I have a table, made using Smart Table in AngularJs.
I am trying to fetching new data and adding to this table using ajax. I push to $scope.rowCollection in ajax call back. However why the newly added data is not displaying in the table? (I am using st-safe-src, and I am adding new data to the collection in st-safe-src.)
Another question is: do I have to add $scope.displayedCollection = [].concat($scope.rowCollection); every time st-safe-src is changed? (adding this line does not solve the issue)
I created this Plunkr with timeout to simulate the ajax call back.
Thanks!