column.type : checkbox|icon|dateDefault: undefined

Indicates the type of the column.

Examples

sample

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