valueListSeparator - Value List Separator
Specifies ta character that separates suggestions in the suggestions string.
Category
dataSyntax
valueListSeparator="sep"
Where sep
is
a character.Usage
In Design mode with focus on the parent control, click the Type Ahead tab under Properties and look for Suggestions separator, or with focus on the typeAhead control click All Properties and look for valueListSeparator under data.If you compute this value, return a character.
Examples
This Edit Box control provides type ahead with the pound sign (#) used for the suggestions separator.<xp:inputText id="inputText1" value="#{document1.subject}">
<xp:typeAhead mode="full" minChars="1"
valueList="alpha#beta#charlie#delta#echo#foxtrot"
valueListSeparator="#" tokens=",/" ignoreCase="true">
</xp:typeAhead></xp:inputText>