fix(smartTable/editableTable): fix last column arrow

Close #57
pull/49/head
tibing 2016-06-21 17:46:18 +03:00 committed by Vladimir Lugovsky
parent f53c360d30
commit 4014e7d12f
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
<div class="horizontal-scroll"> <div class="horizontal-scroll">
<table class="table table-hover" st-table="editableTableData"> <table class="table table-hover" st-table="editableTableData">
<tr class="sortable header-row"> <thead>
<tr class="sortable">
<th class="table-id" st-sort="id" st-sort-default="true">#</th> <th class="table-id" st-sort="id" st-sort-default="true">#</th>
<th st-sort="firstName">First Name</th> <th st-sort="firstName">First Name</th>
<th st-sort="lastName">Last Name</th> <th st-sort="lastName">Last Name</th>
@ -8,6 +9,8 @@
<th st-sort="email">Email</th> <th st-sort="email">Email</th>
<th st-sort="age">Age</th> <th st-sort="age">Age</th>
</tr> </tr>
</thead>
<tbody>
<tr ng-repeat="item in editableTableData" class="editable-tr-wrap"> <tr ng-repeat="item in editableTableData" class="editable-tr-wrap">
<td class="table-id">{{item.id}}</td> <td class="table-id">{{item.id}}</td>
<td><span editable-text="item.firstName" blur="cancel">{{item.firstName}}</span></td> <td><span editable-text="item.firstName" blur="cancel">{{item.firstName}}</span></td>
@ -16,6 +19,7 @@
<td><a class="email-link" ng-href="mailto:{{item.email}}">{{item.email}}</a></td> <td><a class="email-link" ng-href="mailto:{{item.email}}">{{item.email}}</a></td>
<td><span editable-text="item.age" blur="cancel">{{item.age}}</span></td> <td><span editable-text="item.age" blur="cancel">{{item.age}}</span></td>
</tr> </tr>
</tbody>
<tfoot> <tfoot>
<tr> <tr>
<td colspan="6" class="text-center"> <td colspan="6" class="text-center">