AngularJS ng-click: How to pass row data to modal pop up textboxes

Viewed 1348

I want to pass data information from any row clicked to the modal pop up textbox.

Here is my code, I don't know how to implement that.

This is a popup example http://jsfiddle.net/92z54z04/1/, how can i pass value to the popup

<tr ng-repeat="item in myData | filter: searchBox" ng-click="openEdit(item)">
    <td>
        <input type="checkbox" class="css-checkbox" id="checkbox2" />
        <label for="checkbox2" class="css-label mac-style">&nbsp;</label>
    </td>
    <td><a>{{item.Name}}</a></td>
    <td style="text-align: right;">{{item.IsActive ? 'Yes' : 'No'}}</td>
</tr>
1 Answers
Related