1
votes

Is there a way to include the entire value in the filtering search? For example, searching “123″ would return the value “Test 123″. By default, the control only filters starting with the first character.

I tried modifying the queryExpr property mentioned here, but nothing seemed to work for me. Thanks for any tips.

1

1 Answers

1
votes

I realise this is 2 years ago but I'm just answering in case someone else comes along looking!

You can specify the queryExpr like this:

<xe:djFilteringSelect id="djFilteringSelect1" value="#{viewScope.myvalue}" autoComplete="false">
    <xe:this.queryExpr><![CDATA[${javascript:"*$\{0}*"}]]></xe:this.queryExpr>
    <xp:selectItems id="selectItems1" value="#{myBean.mySelectItems}"/>
</xe:djFilteringSelect>