Tagged Questions
1
vote
1answer
16 views
How to enable a click event on first colum of ng-grid on page load
How to enable a click event on first column of ng-grid on page load.
All fields are coming dynamically .And i used ng -grid
i tried these
$('.colt0').find('.icon-sort').click();
...
0
votes
1answer
11 views
Using window in AngularJS to access iframe contents
I have a iframe which return some json string. I have to use that json to construct a table.
<iframe id="idHiddenFrame" name="HiddenFrame" src="/PTO/PlattsIncident.nsf/frmBlank?ReadForm" ...
1
vote
1answer
6 views
Using Kinvey.Social to login with an Angular App and Promise API
I've been using the Kinvey HTML5 library to try to build a client-side app that uses Google identities for Login. Everything seems to be fine as far as the Oauth transaction is concerned, but I'm ...
0
votes
2answers
25 views
Difference between ng-model and ng-model-instant AngularJS
What difference between ng-model and ng-model-instant? When I can use ng-model-instant and ng-model?
Could you give me any example?
Thanks.
2
votes
1answer
47 views
Equivalent of a class loader in Javascript
In Java the class loader loads dynamically Java classes into the JVM. In Javascript I often have a problem of a call done on an unloaded dependency because the loading is done asynchronously.
I use ...
0
votes
0answers
25 views
Angularjs and jQuery $.noConflict()
Having some issues implementing any of the methods for noConflict.
I'm not sure what is going on, the jQuery CDN loads before the Angularjs CDN also the file in which I try to use Jquery loads before ...
2
votes
2answers
56 views
What's the AngularJS “way” of handling a CRUD resource
I am interested in moving a lot of my client's "logic" away from Rails routing to AngularJS. I have slight confusion in one topic and that is linking. Now, I do understand there's more than one way to ...
0
votes
0answers
18 views
Simulated long-press alert not working in iOS browsers
I created a wannabe long-press event in an angular directive that pops open an alert with a few tidbits of info. This works fine on desktop and android browsers, but not in iOS safari OR iOS chrome.
...
1
vote
1answer
42 views
Why does $watch in angular js cause console.log to output twice?
This is my code:
<!doctype html>
<html lang="en-US" ng-app>
<!--Head-->
<head>
<meta charset="UTF-8">
<title>Lesson 5 - ng-show & ...
0
votes
1answer
23 views
Using a full URL with Restangular
I like all of the functions of Restangular for AngularJS, except that I can't find (and it may not support) a way of just passing a full URL to it. I realize the benefit of the ...
0
votes
0answers
32 views
Accessing model data from outside a controller's scope in AngularJS
This is my HTML right now, it has all the stuff in it, from the HTML itself, to the script:
<!doctype html>
<html lang="en-US" ng-app>
<!--Head-->
<head>
...
1
vote
1answer
37 views
Getting started with Angular JS - Structure and other questions
I'm new to AngularJS and have gone through its tutorial, read some of its documentation, and I understand the main aspects. But I'd like some help in organizing the structure of my project.
...
0
votes
0answers
10 views
Mod_proxy server flow for making HTTP requests via a hosted javascript app
Can anyone give a moderately detailed proxy server flow for making HTTP requests via a hosted javascript app, which is an angularjs/node app hosted on apache server port:3000 in my case. I'm calling ...
2
votes
1answer
23 views
Pre-pending a name to the default name of the angularjs controller
I've been experimenting with AngularJS, and I have to say that google has out-done itself. I mean, data manipulation is a breeze and angular is not very difficult to learn. Right now, I'm just going ...
0
votes
1answer
41 views
AngularJS: do events not $emit to $rootScope?
To keep things de-coupled in my AngularJS app, I've got a single validationService that different controllers may call to perform the validation. As it is, the validate() method in a given controller ...