width : int Default: undefined
Width of the grid.
Examples
  
  <table id="grid"></table>
 <script>
     $("#grid").grid({
         dataSource: "../Grid/GetPlayers",
         width: 400,
         columns: [ { field: "ID" }, { field: "Name" }, { field: "PlaceOfBirth" } ]
     });
 </script>