I am trying to use the jQuery plugin UI Multiselect. The invoke of the UI Multiselect goes through $(".multiselect").multiselect();
The question is where should this call be placed in the jqgrid configuration? Should this be done within the OnSelectRow? At the moment I have following calls/definitions in the OnSelectRow:
function (rowid) {
grid.setColProp('available_film_id',{
editoptions:{
dataInit:function (el){$(el).addClass('multiselect')},
size:5,
multiple:true,
dataUrl:'/ajax/selectlist/?q=getSelected&value='+rowid}});
}
}