I added the filtering plugin to my Dojox Enhanced Grid. Now I would like to create my own constraint that filters the grid without user input. The normal grid.filter is deactivated if I use the filtering plugin.
Do subclasses like dojox.grid.enhanced.plugins.filter.BooleanExpr offer that functionality and what would the syntax for a simple filter (by ID for example) look like?
I had a similar problem and only managed to fix it by running the grid filter periodically in the background with the help of some jQuery. I believe this same method may work for what you’re trying to do. Here is some sample code:
Add jQuery:
Put this in the
<head>of the page:and this:
Put this in the
<html>of the page:and this:
Hope this helps.