column.cssClass : stringDefault: undefined

The name(s) of css class(es) that are going to be applied to all cells inside that column, except the header cell.

Examples

sample

    
 <table id="grid"></table>
 <style>
 .nowrap { white-space: nowrap }
 .bold { font-weight: bold }
 </style>
 <script>
     $('#grid').grid({
         dataSource: '/Players/Get',
         columns: [
             { field: 'ID', width: 56 },
             { field: 'Name', width: 100, cssClass: 'nowrap bold' },
             { field: 'PlaceOfBirth' }
         ]
     });
 </script>