<div class="row-fluid lookuppane">
<table ng-repeat="thisCustomer in customerList.customers" ng-click="selectCustomer()" class="table-bordered searchResult">
<tr>
<td><strong>Last Name:</strong> {{ thisCustomer.customer.last_name }}</td>
<td><strong>First Name:</strong> {{ thisCustomer.customer.first_name }}</td>
<td><strong>Active:</strong> {{ thisCustomer.customer.active }}</td>
</tr>
<tr>
<td><strong>Address 1:</strong> {{ thisCustomer.customer.primary_address_line_1 }}</td>
<td><strong>Phone:</strong> {{ thisCustomer.customer.primary_phone_no }}</td>
<td><strong>E-Mail:</strong> {{ thisCustomer.customer.email_address }}</td>
</tr>
<tr>
<td><strong>Address 2:</strong> {{ thisCustomer.customer.primary_address_line_2 }}</td>
<td><strong>Created Date:</strong> {{ thisCustomer.customer.created_datetime }}</td>
<td><strong>ID:</strong> {{ thisCustomer.customer.customer_id }}</td>
</tr>
</table>
</div>
The repeater works like a charm, but in each instance I can't seem to get the click event to happen. I tried wrapping the table in a div and putting the repeater/click on the div but got the same result of the click not happening. I even tried a jQuery.click() event handler on the table, and on the div when present, but neither of those ever fired. I suspect that this has something to do with the clicks happening in the TD instead of the TABLE, but I could be wrong. Am I?