Apply a filter to a cross-table
Apply a filter to a cross-table
Technologies > User Interface Add-Ins > Grouping Views> Two-dimensional cross-table with filter and custom column titles
A filter may be applied to a cross-table, as with any grid panel, by passing a restriction to the panel.
var restriction = new Ab.view.Restriction();
restriction.addClause('prog_budget_items.program_id', 'A%', 'LIKE');
this.budgetByProgCrosstab_table.refresh(restriction);
For further discussion of this example view,
See Also: Add custom columns to a cross-table