Library containing the reusable UI block (component/widget) to allow an autocomplete feature for inputs in ODC Applications.
Migrated from the O11 version available in the Forge.
Application containing the reusable block (component/widget) which allows to have an input with the autocomplete feature in Reactive Applications.
This widget displays suggestions below a text input field. The list of suggestions is fed by an input parameter list, and the filtering occurs on the client side using a 'LIKE "%xxx%"' condition to find the respective matches.
If needed, it is always possible to adapt the existing block to be full server side. For that, one suggestion is to just clone the widget (copy paste the widget to one of your modules and make sure you don't bring unnecessary references), use an aggregate to feed the suggestions list instead of the input parameter list, and it should be ready to be used.
How to use?