Hi,
why is this not working:
but this is?
I think a constructor is missing. Using smartgwt 6.1p power 2018-03-22
why is this not working:
Code:
Criterion c1 = new SimpleCriterion("f_lastname", DefaultOperators.Equals, 'A'); Criterion c2 = new SimpleCriterion("f_lastname", DefaultOperators.Equals, 'B'); AdvancedCriteria ac = new AdvancedCriteria(DefaultOperators.Or, c1, c2);
Code:
Criterion c1 = new SimpleCriterion("f_lastname", DefaultOperators.Equals, 'A'); Criterion c2 = new SimpleCriterion("f_lastname", DefaultOperators.Equals, 'B'); AdvancedCriteria ac = new AdvancedCriteria("or" c1, c2);
Comment