Is there a way to turn off the grouping of digits?
My need is for Account number entry (no dashes commas or decimals needed.)
I don't see a way to turn off grouping, to set formatting, etc...
Thanks,Tony
Hello Tony,
I think that GroupSeparator is what you are looking for.It represents the character, which is used as separator for groups (like thousands).That option has effect only in display (no focus) state.Default is null and $.ig.regional.defaults is used.
http://help.infragistics.com/jQuery/2011.1/ui.ignumericeditor#!options
@(Html.Infragistics().NumericEditor()
.ID("numericEditor")
.Width(200)
.TextAlignment(TextEditorTextAlignment.Right)
.ScientificFormat(NumericEditorScientificFormat.e)
.DecimalSeparator('\0')
.GroupSeparator('\0')
.ButtonType(TextEditorButtonType.None)
.DataMode(NumericEditorDataMode.Float)
.Render()
)
Let us know if you need further assistance regarding this.