-
18 Jun 2012 10:10 PM #1
With addFilters() only the first one gets checked (4.1.0 and 4.1.1 rc 2)
With addFilters() only the first one gets checked (4.1.0 and 4.1.1 rc 2)
When I load filters with addFilters() method, only the first one in array is checked in column menu, everything after this only gets the value inserted but the filter checkbox is left unchecked.
Additionally, if I load gt and lt values of a numeric field separately, only the lt value is displayed at all.
Is there a way to manually check the filter checkboxes?
-
30 Jun 2012 3:34 PM #2
How are you adding the filters?
Regards,Code:{ // button text: 'FILTER', handler: function() { var myfilters= [{ // add additional filters here type: 'numeric', dataIndex: 'price', value: {gt: 50} }]; grid.filters.addFilters(myfilters); } }
Scott


Reply With Quote