I am new to angular and I have built some controller with angular which is shown in below.
var app = angular.module('jobs', []);
app.controller('DaCtrl',function(){
this.itemlist = [{id:"001"},{id:"002"},{id:"003"}];
});
What I need is to update "itemlist" property dynamically by calling a function and display the items using ng-repeat I tried like this and it didnt work :(
What I have tried so far JSFiDDLE