col.Field(Html.NameFor(m => m.First().CancellationAmount).ToString())
.HeaderText(Html.DisplayNameFor(m => m.First().CancellationAmount).ToString())
.EditType(EditingType.Numeric)
.Format("{0:C}")
.NumericEditOptions(new EditorProperties() { DecimalPlaces = 2, MinValue = 0 })
.TextAlign(TextAlign.Center)
.Add();
Above is my column declaration.
So I can enter in numbers using my Number Pad on my Keyboard. I can enter in a period using the main area of my keyboard, but if I try to enter in a period using the numberPad it doesnt work.
I have changed the EditingType to String and the numberPad Period works.
SyncFusion Version 12.4.0.24