This module is contributed from Peter Romianowski
The module convert existing html table to Grid


Convert To Grid

Header1 Header2 Header3
Cell 11 Cell 12 Cell 13
Cell 21 Cell 22 Cell 23
Cell 31 Cell 32 Cell 33

HTML <a href="#" id="ttogrid">Convert To Grid</a> <br/><br> <div style="width:500px;"> <table id="mytable" border="1"> <thead> <tr> <th>Header1</th> <th>Header2</th> <th>Header3</th> </tr> </thead> <tbody> <tr> <td>Cell 11</td> <td>Cell 12</td> <td>Cell 13</td> </tr> <tr> <td>Cell 21</td> <td>Cell 22</td> <td>Cell 23</td> </tr> <tr> <td>Cell 31</td> <td>Cell 32</td> <td>Cell 33</td> </tr> </tbody> </table> </div> <script src="tbltogrid.js" type="text/javascript"> </script> Java Scrpt code jQuery("#ttogrid").click(function (){ tableToGrid("#mytable"); });