如何使表可扩展以默认隐藏

时间:2014-09-09 09:12:20

标签: php jquery css html-table expand

我使用平板响应式管理模板,但我有一个默认情况下可扩展的表格,但我想要默认它会隐藏所有数据,当用户点击它会扩展,图片显示它在扩展像这样默认:

enter image description here

我想像这样默认这样:

enter image description here

可以做到吗?以下是代码,任何人都可以帮助我负责扩展的行data-grouping="expandable",但我不知道什么是行默认隐藏:

<table class="table table-hover table-nomargin table-striped dataTable dataTable-grouping dataTable-noheader" data-grouping="expandable">
<thead>
<tr>
<th></th>
<th>Mobile</th>
<th class='hidden-350'>Email</th>
</thead>

<tbody>
<tr>
<td>Contact Type</td>
<td><?php print $totalsqlcontacttypemobilecorporate; ?></td>
<td><?php print $totalsqlcontacttypecorporateemail; ?></td>
</tr>
</tbody>

</tr>


</table>

0 个答案:

没有答案