Hi,
I created a NumericTextBox, code example under:
var m = 999999999;
var n = new SfNumericTextBox
{
HeightRequest = 50,
HorizontalOptions = LayoutOptions.FillAndExpand,
TextAlignment = TextAlignment.Start,
ReturnType = ReturnType.Done,
ParserMode = Parsers.Double,
ValueChangeMode = ValueChangeMode.OnLostFocus,
GroupSeparatorMode = GroupSeparatorMode.Always,
EnableGroupSeparator = true,
ClearButtonVisibility = Syncfusion.XForms.Editors.ClearButtonVisibilityMode.Never,
MaximumNumberDecimalDigits = 0,
Maximum = m,
Minimum = -m
};
The control work is good. But when I focus to edit value, the cursor have a problem what I mention. I expect the cursor not change position when numer update format, because It's too difficult for editable values.
Control version : 18.4.0.44
Thanks,