在ListGrid(SmartGWT)的过滤器中使用通配符

时间:2013-02-26 22:16:31

标签: java smartgwt

我有以下ListGrid:

ListGridField eml = new ListGridField(EmlSearchItem.EMAIL, EmlSearchItem.EMAIL_TITLE);
emlGrid = new ListGrid();
emlGrid.setWidth("70%");
emlGrid.setHeight("60%");
emlGrid.setFields(eml);
emlGrid.setAutoFetchData(true);
emlGrid.setSelectionType(SelectionStyle.SINGLE);
emlGrid.setAllowFilterExpressions(true);
emlGrid.setShowFilterEditor(true);
emlGrid.setAutoFetchTextMatchStyle(TextMatchStyle. SUBSTRING);

根据JavaDoc设置allowFilterExpressions为true应该启用通配符,例如*,但我没有得到任何结果。

例如,我正在寻找a*com,当我的列表中有12343@chat.mysite.com这样的条目时,我不会给我任何点击

我需要设置另一个标志来通过过滤在ListGrid中使用通配符吗?

0 个答案:

没有答案