<kendo:grid-columnMenu>

If set to true the grid will display the column menu when the user clicks the chevron icon in the column headers. The column menu allows the user to show and hide columns, filter and sort (if filtering and sorting are enabled). By default the column menu is not enabled.Can be set to a JavaScript object which represents the column menu configuration.

Example

<kendo:grid>
    <kendo:grid-columnMenu></kendo:grid-columnMenu>
</kendo:grid>

Configuration Attributes

autoSize boolean

If set to true the column menu would allow the user to fit one or all columns to the width of their content. This setting is available only when the tabbed componentType is used.

Example

<kendo:grid-columnMenu autoSize="autoSize">
</kendo:grid-columnMenu>

clearAllFilters boolean

If set to true, the global column menu will render a button to allow the user to clear all filters applied to the grid.

Example

<kendo:grid-columnMenu clearAllFilters="clearAllFilters">
</kendo:grid-columnMenu>

columns boolean

If set to true the column menu would allow the user to select (show and hide) grid columns. By default the column menu allows column selection. Further configuration is available via kendo:grid-columnMenu-columns.

Example

<kendo:grid-columnMenu columns="columns">
</kendo:grid-columnMenu>

componentType java.lang.String

Specifies the component type of the column menu. "classic" - Uses the standard rendering of the column menu.; "modern" - Uses new rendering with a fresh and modern look and feel. or "tabbed" - Uses the rendering of the "modern" menu, but splits its content into different tabs..

Example

<kendo:grid-columnMenu componentType="componentType">
</kendo:grid-columnMenu>

filterable boolean

If set to true the column menu would allow the user to filter the grid. By default the column menu allows the user to filter if filtering is enabled via the filterable.

Example

<kendo:grid-columnMenu filterable="filterable">
</kendo:grid-columnMenu>

sortable boolean

If set to true the column menu would allow the user to sort the grid by the column field. By default the column menu allows the user to sort if sorting is enabled via the sortable option.

Example

<kendo:grid-columnMenu sortable="sortable">
</kendo:grid-columnMenu>

Configuration JSP Tags

kendo:grid-columnMenu-columns

If set to true the column menu would allow the user to select (show and hide) grid columns. By default the column menu allows column selection.

More documentation is available at kendo:grid-columnMenu-columns.

Example

<kendo:grid-columnMenu>
    <kendo:grid-columnMenu-columns></kendo:grid-columnMenu-columns>
</kendo:grid-columnMenu>

kendo:grid-columnMenu-messages

The text messages displayed in the column menu. Use it to customize or localize the column menu messages.

More documentation is available at kendo:grid-columnMenu-messages.

Example

<kendo:grid-columnMenu>
    <kendo:grid-columnMenu-messages></kendo:grid-columnMenu-messages>
</kendo:grid-columnMenu>
In this article
Not finding the help you need?