After upgrading to 2.8, many of my select-multiple drop-downs are no-longer working. Some of them have a default “blank” entry at the top that is getting selected by default.
This breaks all the filters on the grid. If I click “none” on the multi-select it works properly – but refreshing the report brings-back the blank check-mark at the top of the list.
I am using jquery.multiselect.js and jquery.multiselect.filter.js
Please advise
Thanks
Mike
Sorry – I should have read the online help and reviewed your examples first.
I just read the online help and reviewed your examples and found the answer.
Switching from the old method to the new method works perfectly.
Old Method:
//$col[“searchoptions”] =array(“value” =>”:;”.$var);
New Method
$col[“searchoptions”][“value”] = $var;
Thanks for the update.