Questions tagged as 'angularjs'

2
answers

Why does steam api refuse calls angular?

I'm simply trying to feed my application with Steam api data. Let's take this example: http://api.steampowered.com/ISteamUserStats/GetGlobalAchievementPercentagesForApp/v0002/?gameid=440&format=xml Paste into the browser and will w...
asked by 31.05.2015 / 23:52
2
answers

Why does href not work as intended?

I'm using a special theme in my application that has a chat feature. To open this chat the template uses the following href="#offchat-canvas" reference for an element of my view. This chat is an offcanvas that has the message history....
asked by 23.12.2015 / 14:47
1
answer

How to consume a WebService SOAP with AngularJS?

My current application does the following process Angular <-> PHP <-> service.wsdl I discovered the possibility of deleting this PHP bridge, consuming directly the WebService SOAP, using angular-soap . But when...
asked by 25.11.2015 / 19:54
1
answer

Login / Authentication with AngularJs and PHP

Well, I'm doing WebApp where I have a login page before accessing the app and inside the app I have some areas with restrictions. WebApp is running all right, but I ended up getting stuck in the process of logging in and authenticating....
asked by 23.09.2015 / 04:18
1
answer

Angularjs - creating input templates by passing variables

I'm trying to create a template for my inputs: partials / input_text.html <div> <input type="text" name="{{name}}" placeholder="{{placeholder}}" ng-model="model"> <small ng-show="{{form}}.{{name}}.$dirty &&...
asked by 14.02.2014 / 15:30
1
answer

How to force directive to work only if it is within a specific policy?

I'm trying to make the ngPanelHead, ngPanelBody, and ngPanelFoot directives require to be within the ngPanel directive, otherwise an error will appear on the console. I tried with require but it is not working. I'm using version 1.4.8 of Angular...
asked by 02.12.2015 / 14:36
1
answer

Block Scroll from one side of the grid

I split my page with a grid, where the smallest part I placed items that point to places on the page, I wanted to know how to leave this smaller part fixed and the scroll only works on the larger part of the page where all the content is . So wh...
asked by 25.11.2015 / 11:48
3
answers

How to send data from a form received from an ng-repeat with angularjs

Hello, people, maybe my question is not enlightening, but I'll try to elucidate here. I have a code in angularjs and html, this is a form, which receives the data in array / json format, and populates that form, with an ng-repeat, what I need to...
asked by 04.03.2016 / 18:57
1
answer

How to retrieve via C # the page HTML generated with AngularJS?

How to retrieve the HTML code of a page that uses AngularJS to process some information and generate a chart? I was able to easily retrieve the HTML code using WebRequest as demonstrated in the example below, but the content (graphic) generated...
asked by 29.02.2016 / 15:08
2
answers

Angularjs - test assignment of a variable in $ scope in an asynchronous function

I want to test the following scenario: I have a scope: var scope; beforeEach(inject(function($rootScope) { scope = $rootScope.$new(); })); You need to test whether the assignment of a variable in the $ scope within an asynchronous fun...
asked by 22.02.2014 / 03:10