width : int Default: undefined


Width of the grid.

Examples

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