Example of cascading combobox #3038
Answered
by
vnbaaij
satyajit-behera
asked this question in
Q&A
-
Hi, is there any example of cascading combobox. |
Beta Was this translation helpful? Give feedback.
Answered by
vnbaaij
Dec 12, 2024
Replies: 1 comment 12 replies
-
See #1298 for example code with Select. Same idea |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would advise to use
@bind-SelectedItems
and then add a@bind-SelectedItems:after
method to work with the variable you used to store the selected items in. You can get to all the item data that way. You shouldn't have to tie in to the binding process like you are trying to do.See https://www.fluentui-blazor.net/Autocomplete#default for an example. We just get the country name and display it, but you could get all
Country
properties like that