I have implemented a simple list using md-data-table:
<tr md-row md-select="device" md-on-select="logItem" md-auto-select="options.autoSelect" ng-repeat="device in devices.data">
<td md-cell style='text-align:left;vertical-align:middle'>{{device.ID}}</td>
</tr>
My objective is to write code that allows me to click on an entry in the list and be directed to another site/state/view where the controller can retrieve the value, like device.ID, and generate a view with data related to that device.ID.
While I considered using php post/get method, it's not feasible due to project requirements.