column.align : left|right|center|justify|initial|inherit Default: "left"
This setting control the alignment of the text in the cell.
Examples
<table id="grid"></table>
<script>
$("#grid").grid({
dataSource: "../Grid/GetPlayers",
columns: [
{ field: "ID", align: "center" },
{ field: "Name", align: "right" },
{ field: "PlaceOfBirth", align: "left" }
]
});
</script>