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

FilterValue.CreateShowNonBlanksValue(VerticalGridDataRow, String) Method

Creates and returns the (Non blanks) filter item used to filter a column by non blank values.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public static FilterValue CreateShowNonBlanksValue(
    VerticalGridDataRow column,
    string text
)

Parameters

Name Type Description
column VerticalGridDataRow

A VerticalGridDataRow object that is the data row.

text String

A String value that specifies the item’s display text.

Returns

Type Description
FilterValue

Returns the filter item used to filter by non blank values.

Remarks

When creating custom header filter values by handling the ASPxVerticalGrid.HeaderFilterFillItems event, you can use the CreateShowNonBlanksValue method to create the (Non blanks) filter item. Then, the created item can be added to the header filter item list using the ASPxGridHeaderFilterEventArgs.Values.Add method.

See Also