我使用平板响应式管理模板,但我有一个默认情况下可扩展的表格,但我想要默认它会隐藏所有数据,当用户点击它会扩展,图片显示它在扩展像这样默认:
我想像这样默认这样:
可以做到吗?以下是代码,任何人都可以帮助我负责扩展的行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>