有没有办法在过滤搜索中包含整个值?例如,搜索“123”将返回值“Test 123”。默认情况下,控件仅从第一个字符开始过滤。
我尝试修改提到here的queryExpr属性,但似乎没有任何东西适合我。感谢您的任何提示。
答案 0 :(得分:1)
我意识到这是两年前的事情,但我只是回答以防其他人一起来看看!
您可以像这样指定queryExpr:
<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>