column.title : stringDefault: undefined

The caption that is going to be displayed in the header of the grid.

Examples

sample

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