Posts by Letticia Nicoli • 304 points
6 posts
-
2
votes2
answers4524
viewsA: How do I switch between open windows?
Try to include: using System.Linq;
-
0
votes1
answer99
viewsA: 2 Controllers with the same API
You can create a service to organize/reuse your code, for example: var MyService = angular.module('MyService', []) .service('TestServ', function () { this.methodAPI = function (limit) {…
angularjsanswered Letticia Nicoli 304 -
5
votes1
answer10841
viewsQ: Angularjs Difference ng-show and ng-if
What is the difference between using ng-if and ng-show/ng-Hide ?
angularjsasked Letticia Nicoli 304 -
1
votes1
answer730
viewsA: Angularjs - ng-show directive is not working in java application
First, you got to put the ng-controller in view? Try to use the ng-if instead of ng-show. Follow, an example for better understanding: function MainController($scope) { $scope.mostra = false; }…
-
5
votes1
answer535
viewsQ: Problem with ng-click + Angularjs menu
I have a menu that is filled in dynamically: <div ng-controller="menuDinamicoController as vm"> <div ng-show="isAutenticado"> <img src="{{vm.fotoUser}}" id="imagemUsuario"…
-
5
votes1
answer1306
viewsQ: Dynamic menu using Angularjs
I have an application that has a menu at the top and another on the left side. Menu items must be filled with BD data according to access profile. However, the menu is not being rendered when there…
angularjsasked Letticia Nicoli 304