A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/events/columnhide below:

columnHide - API Reference - Kendo UI Grid

Fired when the user hides a column.

The event handler function context (available via the this keyword) will be set to the widget instance.

Event Data e.column Object

A JavaScript object which represents the column configuration.

e.sender kendo.ui.Grid

The widget instance which fired the event.

Example - subscribe to the "columnHide" event during initialization
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "name" },
    { field: "age" }
  ],
  dataSource: [
    { name: "Jane Doe", age: 30 },
    { name: "John Doe", age: 33 }
  ],
  columnMenu: true,
  columnHide: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(e.column.field); // displays the field of the hidden column
  }
});
</script>
Example - subscribe to the "columnHide" event after initialization
<div id="grid"></div>
<script>
function grid_columnHide(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
  console.log(e.column.field); // displays the field of the hidden column
}
$("#grid").kendoGrid({
  columns: [
    { field: "name" },
    { field: "age" }
  ],
  dataSource: [
    { name: "Jane Doe", age: 30 },
    { name: "John Doe", age: 33 }
  ],
  columnMenu: true
});
var grid = $("#grid").data("kendoGrid");
grid.bind("columnHide", grid_columnHide);
</script>

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4