Skip to main content
A newer version of this page is available. .

ASPxClientGridView.ApplySearchPanelFilter(value) Method

Applies the specified search panel filter criterion to grid data.

Declaration

ApplySearchPanelFilter(
    value: string
): void

Parameters

Name Type Description
value string

A string value that specifies the filter criterion.

Remarks

Use the ApplySearchPanelFilter method to specify a search panel filter criterion and apply it to grid data on the client side. Note that the ApplySearchPanelFilter method is in effect even if the search panel is hidden (the ASPxGridSearchPanelSettings.Visible property is set to false).

To specify a search panel filter on the server side, use the ASPxGridBase.SearchPanelFilter property.

Example

The code sample below demonstrates how to specify the search panel filter in code on the client side using the ASPxClientGridView.ApplySearchPanelFilter method.

SearchPanel_SearchPanelFilter

<dx:ASPxGridView ID="Grid" runat="server" DataSourceID="GridDataSource" ClientInstaceName="grid" >
     <Columns>
          ...
     </Columns>
     <SettingsSearchPanel Visible="True" ShowApplyButton="True" ShowClearButton="True" />
</dx:ASPxGridView>
grid.ApplySearchPanelFilter('big');
See Also