ASPxGridViewSearchPanelSettings Class
Provides settings that affect the search panel functionality.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Related API Members
The following members return ASPxGridViewSearchPanelSettings objects:
Remarks
Use the ASPxGridView.SettingsSearchPanel property to access the ASPxGridViewSearchPanelSettings object.
Example
Web Forms (in markup):
<dx:ASPxGridView ID="Grid" runat="server" >
...
<SettingsSearchPanel Visible="true" ShowApplyButton="True" ShowClearButton="True"
ColumnNames="ContactName; CompanyName" />
</dx:ASPxGridView>
Web Forms (in code):
ASPxGridView grid1 = new ASPxGridView();
grid1.ID = "grid1";
Page.Form.Controls.Add(grid1);
...
grid1.SettingsSearchPanel.Visible = true;
grid1.SettingsSearchPanel.ShowApplyButton = true;
grid1.SettingsSearchPanel.ShowClearButton = true;
grid1.SettingsSearchPanel.ColumnNames = "ContactName; CompanyName";
MVC:
@Html.DevExpress().GridView(settings => {
settings.Name = "grid";
settings.SettingsSearchPanel.Visible = true;
settings.SettingsSearchPanel.ShowApplyButton = true;
settings.SettingsSearchPanel.ShowClearButton = true;
settings.SettingsSearchPanel.ColumnNames = "ContactName; CompanyName";
...
}).Bind(Model).GetHtml()
Concept
Web Forms: Search Panel
MVC: Search Panel
Online Demos
Web Forms: ASPxGridView - Search Panel
Implements
Inheritance
Object
StateManager
PropertiesBase
ASPxGridSettingsBase
ASPxGridSearchPanelSettings
ASPxGridViewSearchPanelSettings
See Also