Habanero.Faces.Win.GridBaseWin.ApplySearch C# (CSharp) Method

ApplySearch() public method

Applies a search clause to the underlying collection and reloads the grid. The search allows you to determine which objects to display using some criteria. This is typically generated by the an IFilterControl.
public ApplySearch ( IFilterClause searchClause, string orderBy ) : void
searchClause IFilterClause The search clause
orderBy string
return void
        public void ApplySearch(IFilterClause searchClause, string orderBy)
        {
            this.GridBaseManager.ApplySearch(searchClause, orderBy);
            FireFilterUpdated();
        }

Same methods

GridBaseWin::ApplySearch ( string searchClause, string orderBy ) : void