Hello, I am using syncfusion Ej Grid in MVC.
I am using grids.EditMode(EditMode.InlineForm) for add and edit and I have a couple of numeric fields which I am adding in grid like this.
but when it loads data in it it has formatting of thousand like '1,011' when we remove focus from the textbox. i wanted to remove this formatting so that it will always display data like '1011'
Do we have any option for this to achieve this?
col.Field(x => x.Thickness)
.TextAlign(TextAlign.Left)
.EditType(EditingType.NumericEdit).NumericEditOptions(new EditorProperties() { DecimalPlaces = 0, ShowSpinButton = false })
.Width(50)
.Add();