column.hidden : boolean Default: false


If set to true the column will not be displayed in the grid. By default all columns are displayed.

Examples

  
Edit this example
<table id="grid"></table> <script> $("#grid").grid({ dataSource: "../Grid/GetPlayers", columns: [ { field: "ID", width: 30 }, { field: "Name" }, { field: "PlaceOfBirth", hidden: true } ] }); </script>