Filter Bar Grid Demo

This demo illustrates the addition of a filter bar to a simple GridDataBoundGrid control.

A filter bar is a row of combo boxes displayed at the top of the grid that allow you to filter the grid by selecting items from the combo boxes. The combo box entries are generated from the unique values in the column. You can also perform complex filtering through a custom filter dialog box. In addition, you can use a custom filter dialog box to implement localized dialog boxes.

FilterBar Grid screenshot

Features:

            GridFilterBar theFilterBar = new GridFilterBar();
            theFilterBar.WireGrid(this.gridDataBoundGrid1);  
            theFilterBar.GridFilterBarStrings[0] = "";
            theFilterBar.GridFilterBarStrings[1] = "";  

            theFilterBar.FilterBarShowDialog += new GridFilterBarShowDialogEventHandler(GridFilterBarShowDialogEventHandler);  
            theFilterBar.UnWireGrid();