I can get the basic time filter working fine, but I want to customize the options. (e.g. the first time picker I want to be "GTE" and the second time picker to be "LTE", and the operator to be AND only.) I also want to specify the header text (e.g. where it says "Show items with value that:")
here is my column def:
{
title: hbLocalization.getString($scope.stringsModule, "_Time_"),
field: 'QuarterHour',
format: timeFormat,
filterable: {
ui: function (element) {
element.kendoTimePicker({
format: 'hh:mm tt',
interval: 15
});
}
}, width: 80 },