Define filter logic to extact string match

Hi,

Shrot question,

Can i define a grid-header-filter to not search for LIKE ‘%var%’ but for the exact match, as LIKE ‘var’?

Thanks
/pavol

Yep, you can redefine which sql will be generated for filtering request

docs.dhtmlx.com/doku.php?id=dhtm … ext_filter

Thanks Stanislav!

Can i get that to work with select filters as well or only with text filters?

cheers
pavol

It must work for both connector_text_filter and connector_select_filter - their values will be sent to server side and fitlering logic can be altered through beforeFilter event ( there is no way to distinguish is it text or select filter - server side receives just a set of filtering strings )