Combo filters are populated by column value. How can I poplate combo filter independently?
I mean I want to show fixed values in the combo even the combo value does not appears in the column. How can I achieve that?
It possible to do with “onCollectValues” event as it called only after all rows are loaded. As a work around you may create custom filter and add complex html into the header.
One more question about combo-box,
How can I assign item pairs to a combo filter? I mean;
OnCollectValues accepts one dimensional array but like to add value and the label separately:
Forexample:
“1”,“One”
“2”,“Two”
…
…
It didn’t solve my problem.
After the filtering it collects combo-filter regarding to standard functionality.
How can I disable onCollectValues event for a certain combo-filter? I want to control that functionality.