Update bootstrap angularjs table with real time data on the fly using ng-repeat
i am using bootstrap table with ng-repeat to populate the table. the issue is that i cannot get the table updated and display data. i have written drag and drop element in my angularjs. once i drag and drop some file over it i get that information back in my controller. this drag and drop is a custom directive. the problem is that i am getting the file detail in my controller $scope.getFiles = function(res) { $scope.fileList = res; console.log(res); } In HTML <file-drop fetch-files="getFiles"></file-drop> where getFiles is the function getting called in the controller and returing the value