Textfield with Suggestions

Hi

I like to have a Textfield, where when I tip a character I get a suggestion of the 10 next possibilities out of a list (like google suggest).

Is there a component or a possibility to have that?

Regards Pascal

Hi Pascal,

with Application Designer 2.2 (released January this year) the FIELD control provides for such a mechanism. Use…

  • FIELD-AUTOCALLPOPUPMETHOD

in order to invoke the method on server side that provides for the list of valid values. E.g. a field like that

…invokes method…

  • findValidValuesForP1

after a certain time (milliseconds) after the last user key down.

Martin