Date range in handsontable?

How to filter using date range in handsontable ? I want to filter using text box and date range. Example : Start Date :
End Date :
http://jsfiddle.net/hU6Kz/5354/
How to filter using date select ?

Hi @santosh

I recommend using the filter API. Here’s the addCondition method https://docs.handsontable.com/pro/1.14.3/Filters.html#addCondition
which you need to call like this

hot.getPlugin('filters').addCondition(1, 'begins_with', ['de'], 'conjunction');

and then use the hot.getPlugin('filters').filter() to rerender the view.
For dates data the keys are before, after and between