I'm trying to filter the grid by using the datepicker but I'm using an external filter outside of the grid and its not working. Here is some of my code below open to any suggestions to make this work. Thanks!
<div id="filters">
<input id="text3" type="text" class="k-textbox" placeholder="Filter by Date">
</div>
<div><div id="grid"></div></div>
JS:
$("#text3").kendoDatePicker({
change: function () {
var value = this.value();
if (value) {
grid.dataSource.filter({
field: "Opened_at",
operator: operator,
value: value
});
} else {
grid.dataSource.filter({}); } } });