First time here? Check out the FAQ!
I have lot of columns in the Listbox. I want to show some thing in the footer only for the first two columns and 5th and 6th column.
I just manage by adding the dummy footer as follows. Is there any other way to avoid this
<listfoot>
<listfooter>
<label value="This is footer1" />
</listfooter>
<listfooter>
<label value="This is footer2" />
</listfooter>
<listfooter>
<label value=" " />
</listfooter>
<listfooter>
<label value=" " />
</listfooter>
<listfooter>
<label value=" " />
</listfooter>
<listfooter>
<label value=" " />
</listfooter>
<listfooter>
<label value="This is footer6" />
</listfooter>
</listfoot>
Asked: 2013-10-08 16:56:54 +0800
Seen: 12 times
Last updated: Oct 08 '13
You can try <listfooter span="5" />
vincentjian ( 2013-10-09 10:06:27 +0800 )edit