Skip to main content
Tab

GridViewDataColumnSettings.ShowFilterRowMenuLikeItem Property

Gets or sets whether the Like item is displayed within the filter row menu.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean ShowFilterRowMenuLikeItem { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

true, if the Like item is displayed; otherwise, false.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowFilterRowMenuLikeItem
GridViewDataColumn
.Settings .ShowFilterRowMenuLikeItem

Remarks

Use the ShowFilterRowMenuLikeItem property to control the visibility of the Like item within the column’s filter row menu. The item supports wildcards that are specific to our binary operator LIKE, e.g., the ‘%’ and ‘_’ wildcard symbols. See Criteria Language Syntax to learn more. The LIKE menu item’s tooltip displays a help text that explains which wildcards are supported.

You can manipulate the item visibility for all columns within a grid by using the ASPxGridViewSettings.ShowFilterRowMenuLikeItem property.

To learn more, see the Filter Row topic.

ASPxGridView_ShowFilterRowMenuLikeItem

See Also