Ejemplo n.º 1
0
 /// <summary>
 /// 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 <see cref="IFilterControl"/>.
 /// </summary>
 /// <param name="searchClause">The search clause</param>
 /// <param name="orderBy"></param>
 public void ApplySearch(string searchClause, string orderBy)
 {
     GridBaseManager.ApplySearch(searchClause, orderBy);
     FireFilterUpdated();
 }