I'm trying to change the default values of the match titles in the filter builder, but the displayed value is not changing.
Displaying the title in a message triggered by a button-click, though, the word "AND" is displayed.
Is there an additional method to call to render the non-default titles?
SmartGWT Version: SC_SNAPSHOT-2012-01-19_v8.2p/PowerEdition Deployment 2012-01-19
Browser: IE 9, Chrome 17.0
Code:
final DataSource dataSource = DataSource.get("supplyItem"); this.filterBuilder = new FilterBuilder(); filterBuilder.setDataSource(dataSource); filterBuilder.setMatchAllTitle("AND"); filterBuilder.setMatchAnyTitle("OR"); filterBuilder.setMatchNoneTitle("NOT");
Code:
SC.say("Match All Title: " + filterBuilder.getMatchAllTitle());
SmartGWT Version: SC_SNAPSHOT-2012-01-19_v8.2p/PowerEdition Deployment 2012-01-19
Browser: IE 9, Chrome 17.0
Comment