Auto complete options for text input

Hi, I'm creating a component where the user enters a formula to retrieve a value. The user types in a string like:

if(diam>10, 5, 4) * weight + density / 100 * aux_function_1(diam)

  • diam, weight and density come from a dict variables.

  • aux_function_1 comes from a dict aux_functions.

I'd like to display the available options as the user types in the formula, if possible with an icon indicating if it's a function or a variable:

Is this possible? Maybe with js injection? I thought of using a dropdown but I find it rather inconvenient as the user would've to define the gaps in advance.

CodeMirror offers exactly this, so a way to implement it in perspective would be ideal.

There's an exchange resource that does something somewhat similar:

Perhaps it can give you some ideas. It looks like it allows the user to tab to complete too.

JS injection would be tricky with text fields because editing the HTML doesn't actually change the property value on the gateway side. You'd have to either only use js injection for display purposes or write to some session props with on change scripts on them.

1 Like

I have never looked into this, but i speed purposes, all the autocomplete logic should happen in the frontend. having an autocomplete that is to slow because it has to go back and forth to the gateway would be useless...

Having everything in the frontend would however be quite some work to make, while possible this looks more on the level of a module than some injected js.

Unless there are only a very few options to autofill, but in which case why bother with it...

2 Likes

I'd like to use it for 5-15 options, just so that the user doesn't type in something incorretly. I might use the ignition exchange resource to autofill plus a table to display the options on the side... not as clean but it will do the job.

Doesn't your search engine auto-complete do this across the Internet? Doing it within a company network should be even faster - provided the gateway has the stamina and adequate optimisation. (I don't have much of a clue how the search engines are optimised.)

They preload several likely keystrokes to keep ahead of you. If you type something unpredicted they hesitate for the extra round trip.

3 Likes