I'm using SmartGWT 3.0 eval.
I have configured the type operators on the datasource I have bound to a FilterBuilder, e.g.:
and I find the and/or drop-down in the FilterBuilder only supplies the "and" option, no matter how many clauses are set. I'm not sure I'm describing this well; before I customized the type operators the FilterBuilder allowed the user to select "Match all" or "Match any" or "Match none" as the 'conjunction' between the filter clauses... I tried calling fb.setMatchAllTitle("All") but that didn't help.
I can't find any API for controlling this aspect of the FilterBuilder. Thanks for any help.
-Susan
I have configured the type operators on the datasource I have bound to a FilterBuilder, e.g.:
Code:
mydatasource.setTypeOperators(FieldType.TEXT, myOperatorForStrings); FilterBuilder fb = new FilterBuilder(); fb.setDataSource(mydatasource);
I can't find any API for controlling this aspect of the FilterBuilder. Thanks for any help.
-Susan
Comment