acute-select
acute-select copied to clipboard
Drop down not populated when provide data thourgh promise
When i provide data by using promise, dropdown does not get populated. here is my code
ContactDBService.select().then(function (result) { $scope.colours = [ { name: 'black', id: 0 }, { name: 'white', id: 1 }, { name: 'red', id: 2 }];
});
Please provide solution if im missing some thing
i had the same issue. If it is manually fed with json data, it is alright. The minute i switch it to getting data from server via http, it is suddenly not working. I tried to issue a $scope.$apply(), but still no effect. any updates on this?
I'm still facing this issue also... =( any ideas?
same issue here, no data from service using ng-resource but works on directly feeding the json data in the controller...