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: '/0_6/Grid/GetPlayers',
columns: [
{ field: 'ID', width: 20 },
{ field: 'Name', width: 100, cssClass: 'nowrap bold' },
{ field: 'PlaceOfBirth' }
]
});
</script>