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, December 15, 2008

New updates coming up

updated is soon to be released

Wednesday, November 26, 2008

we want to hear from you

You can now post issues, bugs and feature request for jquery multi column selectbox plugin just leave a comment to this post

Monday, November 24, 2008

Jquery multiple column selectbox hits 30 downloads

Thank you for those supporting, using and downloading my plugin 30 is a small number compare to 30,000 downloads we're not close but were getting there hehe.. again many thanks

http://code.google.com/p/jquerymulticolumnselectbox/downloads/list

I'm back at working on the plugin

I will share some updates on the new version

Thursday, October 2, 2008

Still on its way... The selected row

1. get all the values of the selected row.
2. provide a simple retrieve for it.
2. and present it on a nice way.

Tuesday, September 30, 2008

On Innovation

Innovation is not about saying yes to everything. It's about saying NO to all but the most crucial features -- Steve Jobs

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>