从TD加载Angle指令(自定义表格)

时间:2018-07-16 13:31:22

标签: javascript angular

我创建了一条指令来显示带有输入数据的表。 我的要求是从一个表td单击,我想加载表格形式的详细信息(指令是向表中加载数据) 但是我在这里苦苦挣扎,该表正在td中添加,我想在单击的行td之后,插入一行,并且该表中的数据应从指令中呈现。 因此,如果有人已经为这个问题苦苦挣扎,请分享您如何解决它。

下面是代码段(html)

<tbody>
  <tr ng-init="row.show=false" id="tableRow{{$index}}" role="row" class="odd" st-select-row="row" ng-repeat="row in displayedCollection">
    <td id="addTable" style="cursor: pointer;" ng-click="displayReports($event,row)">
      <span ng-class="row.show? 'fa fa-caret-down iconSpan' : 'fa fa-caret-right iconSpan'"></span>
      <table-directive ng-if="row.show" data="row.reports"></table-directive>
    </td>
    <td>{{rowCollection.indexOf(row) + 1}}</td>
    <td class="sorting_1">{{row.name}}</td>
    <td class="sorting_1">{{row.reports.length}}</td>
  </tr>
</tbody>

screen1

screen2

在屏幕1中,我遇到了问题

0 个答案:

没有答案