Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Raghu on Nov 14, 2008 01:36
open dhtmlx forum
Grid filters

Hi,
is there any way to do filtering on the date in the grid, for the date column.
Answer posted by Support on Nov 14, 2008 02:23
There is no built in support, but you can define any custom filtering logic

grid.filterBy(0,function(value){
   if (any_kind_of_check(value)) return true;
   return false;
})