SmartClient Version: v9.1p_2015-01-02/PowerEdition Deployment (built 2015-01-02)
FireFox ESR 24.3.0
I have TreeGrid with data provided by local datasource. Everything works fine (filters, sorting etc.) when I fetch data without criteria.
But when I fetch with Criteria FilterEditor stops working
When I type something in FilterEditor and press Enter, data inside TreeGrid isn't filtered and also text I filled in FilterEditor is cleared.
Criterias :
What cause this problem? DataSource is set clientOnly and everything else seems to be ok.
FireFox ESR 24.3.0
I have TreeGrid with data provided by local datasource. Everything works fine (filters, sorting etc.) when I fetch data without criteria.
Code:
getView().getCaseTagsLayout().getTagListGrid().fetchData(); // works fineCode:
getView().getCaseTagsLayout().getTagListGrid().fetchData(criteria); //Criterias :
Code:
{operator=and, criteria=[{fieldName=scope_type, operator=equals, value=CASE}], _constructor=AdvancedCriteria} // criteria provided in fetch method
{operator=and, criteria=[{fieldName=scope_type, operator=equals, value=CASE, _constructor=AdvancedCriteria}, {fieldName=description, operator=iEquals, value=qqq}], _constructor=AdvancedCriteria} // filter from FilterEditor