Grid filters

Hi,
is there any way to do filtering on the date in the grid, for the date column.

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;
})