Hi, great component!
There’s a way to extend the component?
I need to add a changexText Event on the textfield to fill the items dinamically after the 2nd or 3rd char written.
Thank you!
Hi,
Thanks for the feedback. From the top of my head, I don’t think there is a straightforward way to achieve this. Currently typing text in the field filters the drop-down list of items which is the expected behavior.
BR,
Goran
Hi,
Thanks for reply.So how can I fill the items dinamicaly with an autocomplete microsevices?.
Thanks
Enrico
Hi Enrico,
The MultiselectComboBox
uses the same data api as any Vaadin component, which means you can provide the data using a backend data provider, as described here: https://vaadin.com/docs/v14/flow/binding-data/tutorial-flow-data-provider.html#lazy-loading-data-from-a-backend-service
The component also supports lazy loading, which would allow loading only those items in the drop down list that are currently required (see a demo here: https://multiselect-combo-box-flow.herokuapp.com/lazy-loading)
Hope this helps,
Goran