This is the official blog of the jquery multiple column selectbox plugin, A jquery plugin that creates a multi column selectbox a.k.a multicolselect


Download the plugin at googlecode http://code.google.com/p/jquerymulticolumnselectbox/

Submit an Issue or bugs http://code.google.com/p/jquerymulticolumnselectbox/issues/list

Monday, September 29, 2008

Now supports table heading

You can now add a table heading to your multiple column selectbox by using the <th> tag

below is a sample


<div id="datatable">

<table cellspacing="0" width="100%">

<tr>

<th>ID</th><th>Key</th><th>Fruit</th>

</tr>

<tr>

<td>1</td><td>1234</td><td>Apple</td>

</tr>

<tr>

<td>2</td><td>1111</td><td>Cat</td>

</tr>

<tr>

<td>3</td><td>5555</td><td>Dog</td>

</tr>

</table>

</div>

No comments: