i am having problems trying to filter rows that are formatted as a percent. ({0:p2})
I have a simple app where I am using the following in my column definition
Field: "sample",
title: "col 1",
format: '{0:p2}',
filterable: {
ui: function(e) {
e.kendoNumericTextbox({
format: 'p2',
decimals: 2,
change: function(e) {
// code to handle change event
}
}
}}
I am now having problems when I am applying this to another application. For some reason the change event won't fire allowing me to convert the input to a decimal thus matching the underlying data which is in a decimal format.
Is this the recommended method for handling percent data? I am using local data if that makes a difference.