I am using ng-table directive to show tables with data.
My current view utilising the table is :
<table ng-table="table_params" show-filter="true" ng-controller="table">
...
</table>
I have couple of more pages that need to display the same table (only different data). So the logical thing for me seems to be using one view but different controllers to fill the table with different data. I am not sure whats the Angular way of doing that and how to do it.
I am using angular-route
to do the routing with ng-view
directive