Does TreeGrid.setCriteria() support advanced criteria? I have tried modifying example
http://smartclient.com/#_Trees_Filtering
and replace simple criteria
with
However the TreeGrid seems to ignore it (does not apply at all).
If advanced criteria is not supported, is there a way to specify "contains" match type for simple criteria?
Thank you.
http://smartclient.com/#_Trees_Filtering
and replace simple criteria
Code:
{EmployeeType: 'full time'}
Code:
{'_constructor': 'AdvancedCriteria', 'operator': 'and', 'criteria': [ {'operator': 'iContains', 'fieldName': 'EmployeeType', 'value': 'full time'} ]}
If advanced criteria is not supported, is there a way to specify "contains" match type for simple criteria?
Thank you.
Comment