column.align : left|right|center|justify|initial|inherit Default: "left"


This setting control the alignment of the text in the cell.

Examples

  
Edit this example
<table id="grid"></table> <script> $("#grid").grid({ dataSource: "../Grid/GetPlayers", columns: [ { field: "ID", align: "center" }, { field: "Name", align: "right" }, { field: "PlaceOfBirth", align: "left" } ] }); </script>