defaultColumnSettings : object

An object that holds the default configuration settings of each column from the grid.

Examples

sample

    
 <table id="grid"></table>
 <script>
     $('#grid').grid({
         dataSource: '/Players/Get',
         defaultColumnSettings: { align: 'right' },
         columns: [ { field: 'ID', width: 56 }, { field: 'Name' }, { field: 'PlaceOfBirth', name: 'Birth Place' } ]
     });
 </script>