Quick Search |
Docs
The QuickSearch adds a search text box to the toolbar adjacent to the Search button. The QuickSearch feature is simple to use and will match any records that has a text-based column that contains the entered search token. Simply type your search criteria into the box and the search is actioned automatically when you stop typing. |
Razor
DbNetGridCore customersGrid = new DbNetGridCore("northwind", "customers")
{
QuickSearch = true
};
customersGrid.Column(new string[] { "CompanyName", "City", "Country" }).Search();
@customersGrid.Render()