Hi all... I have a table with the following complex structure....
<table>
<tr> // 1st row
<td>
<table>
<tr>
<td>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
<table>
<thead>
<tr>
</tr> etc...
</thead>
<tbody>
<tr>
</tr> etc etc...
</tbody>
</table>
</td>
</tr> // end 1st row
<tr> //2nd row
<td>
<table>
<tr>
<td>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
<table>
<thead>
<tr>
</tr> etc...
</thead>
<tbody>
<tr>
</tr> etc etc...
</tbody>
</table>
</td>
</tr> //end 2nd row
etc etc etc....
</table>
Now i need a plugin so that i can paginate the rows of this table....
I've thought about datatables and tablesorter plugins but theyr're not compatible for the above structure... Any suggestions on which one i can use...?