You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't seem to get draggable columns if the columns are generated by an ng-repeat. It works fine otherwise. Can you tell me if I'm doing something wrong here? Also, is it possible to do drag handles?
<table class="table table-bordered" draggable>
<thead>
<tr>
<th ng-repeat="column in record.columns">{{column.name}}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="i in $times(record.rows)">
<td ng-repeat="column in record.columns" ng-tap="translateOpen(column.rows, i)">{{column.rows[i]}}</td>
</tr>
</tbody>
</table>
The text was updated successfully, but these errors were encountered:
Actually column dragging works when table content is generated with ng-repeat, but it does not work when table header get generated with ng-repeat. I'm also stuck at this point. Is there any way to solve this issue? Is there any option to rebind the dragging event or something like that?
I can't seem to get draggable columns if the columns are generated by an ng-repeat. It works fine otherwise. Can you tell me if I'm doing something wrong here? Also, is it possible to do drag handles?
The text was updated successfully, but these errors were encountered: