I am attempting to edit data in pop-up mode. The issue is with a numeric field that is being validated to have a value, but the model allows for a nullable decimal. I am also using the EditorTemplate as provided by Telerik for currency values.
The validator says "The field 'X' must be a number". How can I allow the grid to allow nullable currency values during edit mode.
As a side note, I have noticed with Web UI Grid that you can set nullable on fields as follows:
The validator says "The field 'X' must be a number". How can I allow the grid to allow nullable currency values during edit mode.
As a side note, I have noticed with Web UI Grid that you can set nullable on fields as follows:
schema: {
model: {
id: "Id",
fields: {
ACurrencyField: { editable: true, nullable: true },
}
}
}