简体   繁体   English

可折叠列表

[英]Collapsible Column table

We want to create the collapsible column table using bootstrap and angularjs. 我们要使用bootstrap和angularjs创建可折叠列表。 This collapsing shouldn't be like toggle but rather like vertical accordion. 这种折叠不应该像拨动开关一样,而应该像垂直手风琴一样。 If any reference of this type of table is available then please provide. 如果有此类表的参考,请提供。

在此处输入图片说明

You can use ng-repeat to create tables with single column. 您可以使用ng-repeat创建具有单列的表。

<table  ng-repeat="employee in employees track by $index" 
 ng-init="colIndex = $index">
  <tr ng-repeat='info in employee track by $index' 
   ng-init="rowIndex = $index" 
   ng-click="rowIndex === 0 ? clicked(colIndex) : null" >
  </tr>
</table>

To see a demo of the collapsible table visit : https://codepen.io/Midhun1993/pen/mRVGjq/ 要查看可折叠表的演示,请访问: https : //codepen.io/Midhun1993/pen/mRVGjq/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM