Is there a way to programmatically set column.filterable.ui?
We are using the following
filterable: { ui: function(element) { element.kendoNumericTextBox({ format: 'n', decimals: 10 });}}
to increase the number of decimals available to numeric columns. However, we are having a problem serializing this using getOptions() and setOptions(). This data isn't retained when we use JSON.Stringify(). I can save data in the serialized json string that can allow me to recreate this; however, I have to be able to set the column.filterable.ui programmatically in order to restore it using the serialized json string.