I have a requirement where I have to apply dynamic date filters on an ExtJS grid on load(i fetch dates from response).I tried but it is not showing the filtered date nor it is marking the "before/after/on" fields of the filter column.please help
This is the code I have used,
grid.filters.addFilter({
type: 'date',
operator: "eq",
value: "11/15/2016",
dataIndex: gridCols[i].dataIndex,
active: true
});
sencha FIDDLE
? - Narendra Jadhavvalue: Ext.Date.parse("11/15/2016", "m/d/Y")
- Alexander