...
Select input control in layout of your project.
In properties window of selected input control, select More to open dialog to present additional properties.
In additional properties dialog, define the following values:
text Format Mode: Key
show Suggestion: true
suggestion Items: {_services>/GenSearchHelp}
suggest: define JS function to handle suggest event i.e: handleSuggestion(evt)
suggestionItemSelected: define JS function to handle event when suggestion item is selected i.e: handleSugItemSel(evt).
Add 2 custom node under input control:
Select node core:ListItem, add the following definition in the Attributes properties:
Code Block language xml text="{_services>Name}" key="{_services>Id}" additionalText="{_services>Id}"
Add a script node in your project, open editor and add following implementation for JS function to handle suggest event:
...