Replies: 1 comment
-
It should be updated, if not it's a bug, let me create an issue and check it |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How do I get the selections from the MultiplePickerField. I tried binding to the "SelectedItems" property with an "ObservableCollection" of object and it doesn't get any items I selected
<material:MultiplePickerField Title="Pick additional options" SelectedItems="{Binding SelectedItems}" ItemsSource="{Binding AdditionalOptions}"/>
public ObservableCollection<object> SelectedItems { get; set; }
Beta Was this translation helpful? Give feedback.
All reactions