I am trying to have the cell filter render a DateTimePicker with the parsed format as 24 hr - when i select 20.30 from the time picker portion it gets set in the rendered input as 03/06/2017 08:30 - I have tried numerous configurations for the template format arguments - could someone please point me in the right direction?
dcolumns[ci][
"type"
] =
'date'
;
dcolumns[ci][
"filterable"
] = {
cell: {
showOperators:
false
,
template:
function
(args) {
args.element.kendoDateTimePicker({
timeFormat:
"HH:mm"
,
format:
"MM/dd/yyyy HH:mm"
,
parseFormats: [
"MM/dd/yyyy hh:mm tt"
]
});
}
}
}