aspnet-devexpress-dot-web-348bf533.md
Provides settings that affect the search panel functionality.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class ASPxGridViewSearchPanelSettings :
ASPxGridSearchPanelSettings
Public Class ASPxGridViewSearchPanelSettings
Inherits ASPxGridSearchPanelSettings
The following members return ASPxGridViewSearchPanelSettings objects:
Use the ASPxGridView.SettingsSearchPanel property to access the ASPxGridViewSearchPanelSettings object.
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()
Web Forms : Search Panel
MVC : Search Panel
Web Forms : ASPxGridView - Search Panel
MVC : Grid View - Search Panel
Object StateManager PropertiesBase ASPxGridSettingsBase ASPxGridSearchPanelSettings ASPxGridViewSearchPanelSettings MVCxGridViewSearchPanelSettings
See Also
ASPxGridViewSearchPanelSettings Members