Hi, I have the following SfComboBox defined:
<comboBox:SfComboBox DataSource="{Binding SelectedPanel.DataSource}"
DisplayMemberPath="Item1"
SelectedValuePath="Item2" SelectedValue="{Binding SelectedPanel.SelectedValue}"/>
The DataSource is bound to a collection of Tuple<string, Enum>. The ComboBox is behaving correctly in that it displays the text value (Item1 of the Tuple) but a silend exception is thrown when changing the SelectedValue as an attempt is made to convert a string to the Enum value set as the target of the SelectedValue binding. It appears as if the combo box is ignoring the SelectedValuePath? Versions are below:
Syncfusion: 17.4.0.53
XF: 4.5.0.356
Android Emulator: 9.0 (API 28)