I'm working with a Date Column thats part of the Data Grid. I'm using the following filter for my DateClosed Column. The template display a button in the column cell if the DateClosed value = '01/01/0001' and the date closed value when its not equal to that '01/01/0001'.
My problem is I want to allow users to filter to only show the Closed or Not Closed records. Records.
Using the ui: datepicker does not allow me to do this.
please help
Grid....
{
field: 'DateClosed',
title: 'Closed',
format: '{0:MM/dd/yyyy}',
filterable: {
extra: true,
ui: 'datepicker'
},
template: kendo.template($("#closeActionItem").html())
},
My problem is I want to allow users to filter to only show the Closed or Not Closed records. Records.
Using the ui: datepicker does not allow me to do this.
please help
Grid....
{
field: 'DateClosed',
title: 'Closed',
format: '{0:MM/dd/yyyy}',
filterable: {
extra: true,
ui: 'datepicker'
},
template: kendo.template($("#closeActionItem").html())
},