column.tooltip : stringDefault: undefined

The text for the cell tooltip.

Examples

sample

    
 <table id="grid"></table>
 <script>
     $('#grid').grid({
         dataSource: '/Players/Get',
         columns: [
             { field: 'ID', width: 56, tooltip: 'This is my tooltip 1.' },
             { field: 'Name', tooltip: 'This is my tooltip 2.' },
             { field: 'PlaceOfBirth', tooltip: 'This is my tooltip 3.' }
         ]
     });
 </script>