The new filter is what I have been waiting for - thank you. However, I have created a custom editor as I want to search for a number in an id field, i.e. 922 instead of "922". I am using the following:
function RiskIdEditor(container, options) {
$('<input data-bind="value: value" name="' + options.field + '"/>')
.appendTo(container)
.kendoNumericTextBox();
}
but this defaults to include 2 decimal places, e.g. 922.00. How do I force the numeric text box to display whole numbers only?
Thanks,
Jonathan