defaultColumnSettings : object
An object that holds the default configuration settings of each column from the grid.
Examples
<table id="grid"></table>
<script>
$("#grid").grid({
dataSource: "../Grid/GetPlayers",
defaultColumnSettings: { align: 'right' },
columns: [ { field: "ID", width: 30 }, { field: "Name" }, { field: "PlaceOfBirth", name: "Birth Place" } ]
});
</script>