column.sortable : booleanDefault: false

Indicates if the column is sortable. If set to true the user can click the column header and sort the grid by the column source field.

Examples

sample

    
 <table id="grid"></table>
 <script>
     $('#grid').grid({
         dataSource: '/0_6/Grid/GetPlayers',
         columns: [
             { field: 'ID' },
             { field: 'Name', sortable: true },
             { field: 'PlaceOfBirth', sortable: false },
             { field: 'DateOfBirth', type: 'date', title: 'Birth Date' }
         ]
     });
 </script>