Dojo EnhancedGrid & Store: Why is options.count not set when the filter is enabled?

I am using dojox / grid / EnhancedGrid. When a table calls a method query()from storeduring filtering, options.countit is not set. Is there a reason for this behavior? I want to still limit the result when filtering.

+4
source share
1 answer

Turns out I need to rotate isServerSide: truefor this to work properly. Since otherwise, Dojo will try to filter the result on the client side and requests all available data, therefore it is options.countnot installed.

My link: dojox.grid.EnhancedGrid.plugins.Filter

+2

All Articles