Status: I have a view where user double click a certain row to edit the table data.
VIEW:
<table>
<!-- give the modal value on doble click to be used as condition in the ng-show -->
<tbody ng-model="facture_details">
<tr ng-if="facture_details == 'editMode'" ng-repeat="user in selectedFacture">
<td>
<input type="checkbox" ng-model="user.selected" />
</td>
<td data-title="Name">{{ user.name }}</td>
<td data-title="Last Name" data-field="lastName">{{ user.lastName }}</td>
<td><a class="btn btn-default" ng-click="edit(user)"><i class="icon-pencil"></i>Edit</a>
</td>
<div>
<tr>
<td>{{ user.name }} {{ user.lastName }}</td>
<td>{{ user.name }} {{ user.lastName }}</td>
</tr>
</div>
</tr>
</tbody>
</table>
So on double click i want to show the tr, i tried ng-show but it's not working too. Thanks in advance