Hello,
am using SfComboBox to provide a control to select one or more items from a list, but not to allow to enter a free text value.
Am using following XAML code to render the control:
<sfcom:SfComboBox x:Name="cmbLabels"
IsEditableMode="False"
TokensWrapMode="None"
IsSelectedItemsVisibleInDropDown="false"
MultiSelectMode="Token">
<sfcom:SfComboBox.TokenSettings>
<sfcom:TokenSettings FontSize="15"
BackgroundColor="#66ccff"
TextColor="White"
SelectedBackgroundColor="#ffffe0"
DeleteButtonColor="Navy"
IsCloseButtonVisible="true"
CornerRadius="10">
</sfcom:TokenSettings>
</sfcom:SfComboBox.TokenSettings>
</sfcom:SfComboBox>
I have three issues with this:
1. Although IsEditableMode is set to false (which is also default) the SfCombo allows to enter a free text item. Any way how to disable free text editing?
2. When I tap to the Combo it displays the list (which is OK) but also shows the virtual keyboard (which is not OK) and the keyboard overlaps the list of options. Is there a way how to supress the keyboard? See the example below - "Altoona" is the first option, then there are four more options that are hidden by the keyboard.
Any ideas?
thanks
Jiri