Hallo,
I have a input form which has first a SfTextInputLayout with a SfNumericTextBox. When entering a number in the SfNumericTextBox and not pressing the return key, but instead changing directly to the next control, a combobox and than trying to save the value, the code is not picking up the value from the SfNumericTextBox in an android device, even the value is still there after saving. In IOS & UWP it is working. When I press the return key and than using the combobox, it is working.
Sombody has a clue how to fix that.
<inputLayout:SfTextInputLayout x:Name="NumericInputDistanceVisible" IsVisible="False" Margin="10,0,10,0"
Hint="Distance"
ContainerType="Outlined"
OutlineCornerRadius="8"
FocusedColor="#00AFA0"
UnfocusedColor="Silver"
HelperText="Required *">
<numeric:SfNumericTextBox
x:Name="NumericInputDistance"
AllowNull="False"
MaximumNumberDecimalDigits="2"
FormatString="n"
Watermark="Getting Started" />
</inputLayout:SfTextInputLayout>
<inputLayout:SfTextInputLayout x:Name="comboBoxSectionFrame" Hint="Track Surface" HelperText="Select Track Surface"
ContainerType="Outlined"
OutlineCornerRadius="8"
FocusedColor="#00AFA0"
UnfocusedColor="Silver"
Margin="10,0,10,0" IsVisible="False">
<combobox:SfComboBox SelectedItem="Asphalt" x:Name="comboBoxSectionProfil" >
<combobox:SfComboBox.ComboBoxSource>
<ListCollection:List x:TypeArguments="x:String">
<x:String>Asphalt</x:String>
<x:String>Gravel Road</x:String>
<x:String>Trail</x:String>
<x:String>Grass</x:String>
<x:String>Sand</x:String>
</ListCollection:List>
</combobox:SfComboBox.ComboBoxSource>
</combobox:SfComboBox>
</inputLayout:SfTextInputLayout>
Thanks,
Markus