I have a jqGrid and I want one column to be a multiselect combobox. I got a plugin from,
http://www.abeautifulsite.net/blog/2008/04/jquery-multiselect/
How to integrate those, and how to get the selected values?
I have a jqGrid and I want one column to be a multiselect combobox. I got a plugin from,
http://www.abeautifulsite.net/blog/2008/04/jquery-multiselect/
How to integrate those, and how to get the selected values?
You can use jQuery UI MultiSelect Widget for example to implement multiselect with checkboxes.
The demo shows how you can implement this. You will have the results like the following
You can customize multiselect plugin using different options. In the demo I used the following code
I should mention that you can edit multiple selectable list without using any plugins. The only disadvantage is that the user interface will be not so nice. The next demo shows how all works without multiselect plugin.
UPDATED: If you need to set all rows in editing mode directly after the loading you can do this like in the next demo.