Hello,
I'm using Grid with filters in my AngularJS application, following an example from http://demos.telerik.com/kendo-ui/grid/filter-menu-customization
My timestamp field has "date" type:
schema: {
model: {
id: "id",
fields: {
applicationName: { type: "string" },
category: { type: "string" },
comment: { type: "string" },
entityName: { type: "string" },
userName: { type: "string" },
machineName: { type: "string" },
timestamp: { type: "date" }
}
}
}
And I'm using the same column format:
{
field: "timestamp",
title: "Timestamp",
format: "{0:MM/dd/yyyy HH:mm:ss}",
filterable: {
ui: "datetimepicker"
}
},
But only date picker appears in the filter row of my grid, when there is date and time pickers appear in the example. See the screenshot attached.
The only difference I see is that my application uses Angular and the example is pure jQuery.
How can I add timepicker in Angular?