twitter bootstrap - How to toggle column visiblity in table? -
is there simple way toggle visiblity of 1 column in table? know can use jquery , write code this, think there's simplier way this.
in bootstrap 3 class .hidden
. can add class column, wich shouldn't visible.
html
<table> <tr> <td>bla1<td> <td>bla1<td> <tr> <tr class="hidden"> //this column hidden <td>bla2<td> <td>bla2<td> <tr> <tr> <td>bla3<td> <td>bla3<td> <tr>
Comments
Post a Comment