SmartGWT Pro 2.5
Problem with TreeGrid where setCriteria is not applied to data fetched when node is opened if initial data in grid was loaded via setInitialData.
In order for setCriteria to be applied at lease one initial fetchData must be performed either automatically or manually. How can we work around this?
Want to be able to setInitialData and then all future fetches due to node open will include criteria.
Using
Problem with TreeGrid where setCriteria is not applied to data fetched when node is opened if initial data in grid was loaded via setInitialData.
In order for setCriteria to be applied at lease one initial fetchData must be performed either automatically or manually. How can we work around this?
Want to be able to setInitialData and then all future fetches due to node open will include criteria.
Using
Code:
setCriteria(criteria); setLoadDataOnDemand(true); setAutoFetchData(false);
Comment