SmartClient Version: SNAPSHOT_v11.1d_2016-12-25/Enterprise Development Only (built 2016-12-25)
Chrome on OSX
Hello, I've just found another problem with the original test case.
so, please remove the autoFetchData:true setting from the #adaptiveFilterFS sample. Then execute:
Now you may alternate that criteria with this:
and the grid will nicely fetch the correct data accordingly to the criteria.
Now, try to group the grid by 'Category': the grid won't fetch the correct data, when you set one of those former criteria.
Chrome on OSX
Hello, I've just found another problem with the original test case.
so, please remove the autoFetchData:true setting from the #adaptiveFilterFS sample. Then execute:
Code:
supplyList.setProperty('implicitCriteria', {_constructor:'AdvancedCriteria', operator:'and',criteria:[{fieldName:'itemName', operator:'iStartsWith', value:'add'}]}) supplyList.fetchData()
Code:
supplyList.setProperty('implicitCriteria', {_constructor:'AdvancedCriteria', operator:'and',criteria:[{fieldName:'itemName', operator:'iContains', value:'add'}]})
Now, try to group the grid by 'Category': the grid won't fetch the correct data, when you set one of those former criteria.
Comment