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

ASPxGridViewSettings.ShowFilterRowMenuLikeItem Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(false)]
public bool ShowFilterRowMenuLikeItem { get; set; }

Property Value

Type Default Description
Boolean **false**

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

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowFilterRowMenuLikeItem
ASP.NET Controls and MVC Extensions ASPxGridView
.Settings.ShowFilterRowMenuLikeItem
GridViewProperties
.Settings.ShowFilterRowMenuLikeItem
GridViewSettings
.Settings.ShowFilterRowMenuLikeItem
GridViewSettings<RowType>
.Settings.ShowFilterRowMenuLikeItem
MVCxGridView
.Settings.ShowFilterRowMenuLikeItem
MVCxGridViewProperties
.Settings.ShowFilterRowMenuLikeItem
ASP.NET Bootstrap Controls BootstrapGridView
.Settings.ShowFilterRowMenuLikeItem

Remarks

Use the ShowFilterRowMenuLikeItem property to control the visibility of the Like item within the 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 item visibility for individual groups by using a group’s GridViewDataColumnSettings.ShowFilterRowMenuLikeItem property.

To learn more, see the Filter Row topic.

ASPxGridView_ShowFilterRowMenuLikeItem

See Also