I am using data table plug-in for pagination..Now I want collapsible feature on click of every row of table...
This is a snippet of my code :
<tr class="outer-tr">
<td>1</td>
<td>pppol</td>
<td>Approved</td>
</tr>
<tr class="inner-tr">
<td>show-hide</td>
</tr>
And I am hiding/showing inner-tr
on click of outer-tr
.
But it gives an error:
Uncaught TypeError: Cannot read property 'className' of undefined
I know this happens because of improper table format..