Hi,
I have a numeric textbox inside a Grid. I would like to allow showing a "," as a separator (thousands) and also allow decimals.
In the OnEdit of the Grid, I have the following setup:
1.edit: function(e) {2. e.container.find("input[name^=costOperand]").kendoNumericTextBox({3. min: 1,4. max: 888888887,5. step: 1006. });7.}
With the above the numeric textbox doesn't allow me to type in a ",". Only decimals are allowed.
Any idea?
Thanks