Hi,
I have a SfComboBox as below:
<textInputLayout:SfTextInputLayout
x:Name="StateComboBoxLayout"
Hint="State"
ContainerType="Filled"
HelperText="Select state"
FocusedStrokeWidth="4"
UnfocusedStrokeWidth="2"
ErrorColor="Red"
ErrorText="State is required."
HeightRequest="40"
ClassId="required">
<combobox:SfComboBox
x:Name="stateComboBox"
IsEditableMode="True"
DataSource="{Binding States}"
WidthRequest="200"
HeightRequest="22"
TextColor="Gray"
Unfocused="Entry_OnUnfocused"
ShowSuggestionsOnFocus="True">
</combobox:SfComboBox>
</textInputLayout:SfTextInputLayout>
Is there a way to have set the SelectedItem from the highlighted value on exit of the field such as if the user clicks tab or return on the keyboard?
Kind regards,
Judi Smith