JSFiddle - React, Tailwind, and code Playground
by darkajax
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/ui-darkness/jquery-ui.css">
<link rel="stylesheet" href="http://www.trirand.com/blog/phpjqgrid/themes/ui.jqgrid.css">
<script src="http://www.trirand.com/blog/phpjqgrid/js/jquery.jqGrid.min.js"></script>
<script src="http://www.trirand.com/blog/phpjqgrid/js/i18n/grid.locale-en.js"></script>
<table id="mytable">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Age</th>
<th>Reamrk</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>name1</td>
<td>1</td>
<td>Remark1</td>
</tr>
<tr>
<td>2</td>
<td>name1</td>
<td>1</td>
<td>Remark1</td>
</tr>
</tbody>
</table>
<div id="pager"></div>
JavaScript
tableToGrid("#mytable");