MakeFilter on select with multiple sections

Using connectors, and wondering if there is a way to use a multiple select like

<select name="myfilter" size="4" multiple="multiple" id="myfilter"></select> ... mygrid.makeFilter("myfilter",6);

Basically, I want to filter a column based on %like MASK OR %like MASK etc. and I need to do it on a smart rendered grid using connectors.

Greg

makeFilter creates cannot create filters for connector.
To create such filter outside grid you should attach “onchange” event and reload grid with following code:

mygrid.clearAll();
mygrid.load(url?params)

Please find more information about server side filtering here docs.dhtmlx.com/doku.php?id=dhtm … parameters