Autocomplete works very well, but how can the user see a complete list of results (not just a list based on whatever is typed)?
For example a new user might not be familiar with all the options and therefore doesn’t know what to type. Sometimes pressing the space bar can bring up many results but maybe not all, especially if some or all of the results are single words.
Hi @TomD , interesting but it does add another layer of complexity, albeit minor. I still wonder if there is an option, when the focus is on the autocomplete, to press say an F key or something like Ctrl-Tab to show the full list.
I think you could do this using a variable do determine which input is displayed. You could set the variable with a keystroke like this (for Ctrl+G to show the autocomplete version):
Edit: you could toggle the setting: <body is="dmx-app" dmx-on:keydown.ctrl.keyg="var1.setValue(var1.value == 'autocomplete' ? 'completelist' : 'autocomplete')">