Hello,
I am trying to change the implicit criteria for a ListGrid in order to focus on different subsets of a data source with a code like this:
and at the same time to be able to use the row filter for further compound filtering with the initial criteria...
However only the first call to setImplicitCriteria is taken into consideration and any subsequent call of the above code with another criteria just displays an empty ListGrid. But setting back the first criteria again displays correctly.
Is this a bug or this is how setImplicitCriteria() should behave? Meaning once it gets set you can never update it?
Using SmartClient Version: v13.0p_2022-01-09/LGPL Development Only (built 2022-01-09)
Thank you
I am trying to change the implicit criteria for a ListGrid in order to focus on different subsets of a data source with a code like this:
setImplicitCriteria(criteria);
fetchData(criteria);
fetchData(criteria);
However only the first call to setImplicitCriteria is taken into consideration and any subsequent call of the above code with another criteria just displays an empty ListGrid. But setting back the first criteria again displays correctly.
Is this a bug or this is how setImplicitCriteria() should behave? Meaning once it gets set you can never update it?
Using SmartClient Version: v13.0p_2022-01-09/LGPL Development Only (built 2022-01-09)
Thank you
Comment