<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.grapecity.com/wijmo/5.latest/styles/wijmo.min.css">
<script src="https://cdn.grapecity.com/wijmo/5.latest/controls/wijmo.min.js"></script>
<script src="https://cdn.grapecity.com/wijmo/5.latest/controls/wijmo.grid.min.js"></script>
<script src="https://cdn.grapecity.com/wijmo/5.latest/controls/wijmo.input.min.js"></script>
<div class="container">
<h1>
FlexGrid
</h1>
<p>
The FlexGrid allows you to visualize and edit tabular data.
It provides a variety of options about how to present and
perform operations over the data, including selection,
sorting, filtering, grouping, paging, editing, formatting,
etc.</p>
<p>
Populate the FlexGrid by setting its <b>itemsSource</b>
property to an array containing regular JavaScript objects.
The grid will automatically generate columns to display
the data items, and will allow users to select, sort, and
edit the data.</p>
<div id="gridDefault">
</div>
<p>
You can customize the grid columns by setting the
<b>autoGenerateColumns</b> property to false and populating
the columns property in code.</p>
<div id="gridCols">
</div>
<p>
You can customize the grid's default features by setting
the <b>selectionMode</b>, <b>allowSorting</b>, <b>allowDragging</b>,
<b>isReadOnly</b> and <b>headersVisibility</b> properties
(among many others).</p>
<div id="gridProps">
</div>
<label>
<div class="header">selectionMode:</div>
<div id="selectionMode"></div>
</label><br>
<label>
<div class="header">allowSorting:</div>
<div id="allowSorting"></div>
</label><br>
<label>
<div class="header">allowDragging:</div>
<div id="allowDragging"></div>
</label><br>
<label>
<div class="header">isReadOnly:</div>
<div id="isReadOnly"></div>
</label><br>
<label>
<div...