Hello,
I have setup a grid like this:
and filtering for a date before today works fine but using after produces no results at all. The data does contain data with dates in the future.
I am using the latest version v2014.2.903
Any ideas?
Thanks,
Casper
I have setup a grid like this:
$scope.mainGridOptions = { dataSource: { transport: { read: function (e) { $http({ method: 'GET', url: myUrl, cache: true }). success(function (data) { e.success(data); }). error(function (data, status) { console.log(status); }); } }, serverPaging: false, serverSorting: false, schema: { model: { fields: { expiryDate: { type: "date" } } } } }, sortable: true, filterable: { mode: "row, menu", operators: { date: { gt: "After", lt: "Before" } } }
}and filtering for a date before today works fine but using after produces no results at all. The data does contain data with dates in the future.
I am using the latest version v2014.2.903
Any ideas?
Thanks,
Casper