All Questions
Tagged with angularjs-ng-repeat angularjs-routing
12 questions
0
votes
0
answers
214
views
Angular list rendering
I've recently started to use Angular for front-end development to communicate with an API to perform state changes in the UI. I would like to know what is the way to update a front-end component after ...
1
vote
2
answers
2k
views
Enabling a Submit button onclick of another button in a single page app in AngularJS
I have an AngularJS app where I am using UI-Router. There I want to disable a submit button in the beginning and enable it after a user clicks a particular another button. (Try using ng-disabled).
3
votes
3
answers
9k
views
Angular View Not Updating with New Data
I'm a bit of an Angular newbie so sorry if this is obvious.
I have a backend which returns an array of objects. After I retrieve them, I move to the next page and i need to display a checkbox for ...
9
votes
4
answers
20k
views
Ionic - Reload and display new data in ng-repeat when clicking back button
Background
I have an ng-repeat list that goes to a details page (which has a back button). The $scope.items variable is loaded from a get request that occurs when the page is first loaded, with my ...
1
vote
2
answers
7k
views
Applying ng-repeat on array of objects displays [Object object]
I have a controller that looks like this:
var PlayersController = function($scope, $http) {
$http.get('/Players/Index').success(function (data) {
console.log(data);
$scope.players ...
0
votes
2
answers
463
views
Routing - Ng -hide , Ng-show AngularJS
I have a base HTML file dashboard. In dashboard I have included a header HTML file with a menu. .A content tml file. A footer HTML file using ng-include.
Now I want to click on the menu on the header ...
3
votes
2
answers
2k
views
How to trigger ng-repeat in Angularjs with MVC application..?
i'm creating an application in AngularJS with MVC
i write code in AdminCtrl.js is:
var adminModule = angular.module('angApp', []);
adminModule.controller('AdminCtrl', ['$scope', '$http',
function ($...
1
vote
3
answers
3k
views
AngularJS Trying to use ng-click with ng-switch but ng-switch is not switching my divs
AngNoob here. I have some global navigation that uses the routeProvider to swap out external html pages inside the view. Within the view i set up a list type sub navigation (created with ng-repeat) ...
1
vote
1
answer
273
views
Load next set of content with AngularJS
I recently have been working with Angular and I'm struggling with this. My API route is
file/50/0
where 50 is the number of items to return, and 0 is the page number. Although I've been having ...
3
votes
2
answers
5k
views
AngularJS rendering different template inside ng-repeat using ng-view
I would like to apologize that I couldn't provide any code snippet regarding this question, I am a newbie about AngularJS.
<div ng-repeat="item in list" ng-view></div>
Using the code ...
1
vote
1
answer
3k
views
Filter JSON data based on current URL route
The problem
I'm trying to filter json data and display only a portion of it on an Angular page, based on the page's current URL.
In detail
I have a list of 100 JSON objects, and each one looks ...
1
vote
1
answer
3k
views
Angularjs - ng-view inside ng-repeat
I have a list of Products. For each one, I have buttons to show the details and comments about it inside this ng-view.
The user must to see in one pege the details about all products available, for ...