I have several grids where the field is a float, and therefore has e-numeric-edit-options set to allow for decimal places. All are similar to:
<e-column field="CostPerUnit"
header-text="Cost per unit"
edit-type="Numeric"
format="{0:C4}">
<e-numeric-edit-options decimal-places="4"
show-spin-button ="false"/>
</e-column>
None of them are behaving as if they see the options - can't type a decimal point, and the spin button is still there. I looked at the page source, and it looks like the fields are OK in the JS version:
{
"field":"CostPerUnit",
"headerText":"Cost per unit",
"editType":"numericedit",
"format":"{0:C4}",
numericEditOptions:{"showSpinButton":false,"decimalPlaces":4}
}
Am I doing something wrong? or is this broken?