If I switch from the hard-coded items list in the following jsfiddle http://jsfiddle.net/rubyoma/bFJZK/ using a plain $http
$http.get('/mypath.json').then (response) =>
response.data)
The data is async and come back after the table is rendered. I don't need to listen for changes, all needed is the json and search/sort client side (as it works right now). How would you make this work with the http get?
Post-accept EDIT: For tables I'd check out http://lorenzofox3.github.io/smart-table-website too