How to apply a filter to a date column

Tags: #<Tag:0x00007f8b2573a020>

I have a column in my table that is defined as a date type. I am trying to use the addCondition method of the filters plugin to apply a filter on the column, but no matter what I do, I always end up with all rows getting filtered out.

Here is an example: https://jsfiddle.net/vt6m2joq/

I think it has to do with the format of the value I’m passing for the filter. What should the format be? I can’t find that information anywhere in the documentation.

Hey @bhatt.40

for dates there are some separate keywords that has to be used. Here is an example https://jsfiddle.net/zgjponfc/

The use of

 afterFilter: function(){
    	console.log(arguments)
    }

can help as it will tell you what key has been used.

I will send a request to update the tutorial for dates.

Ok, thank you.