column.hidden : booleanDefault: false

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

Examples

sample

    
 <table id="grid"></table>
 <script>
     $('#grid').grid({
         dataSource: '/Players/Get',
         columns: [
            { field: 'ID', width: 56 },
            { field: 'Name' },
            { field: 'PlaceOfBirth', hidden: true }
        ]
     });
 </script>