AngularJS is an open-source JavaScript framework. Its goal is to augment browser-based applications with Model–View–Controller (MVC) capability, reduce the amount of JavaScript needed to make web applications functional. These type of apps are also known as Single-Page Applications
0
votes
0answers
2 views
Is it possible to use requirejs in salesforce
I am a UI developer and recently started working in Salesforce CRM. I am developing a web application in salesforce platform and I have planned to use requirejs and angular js
Is it possible to use ...
0
votes
0answers
2 views
AngularJS iterate over $dirty elements
I already know how to check if certain input elements on my form are dirty or not, but I was wondering if there was a quick way to just iterate over just the $dirty ones only? I know Angular sets a ...
0
votes
0answers
6 views
Compiling Nested Directives
My objective is, have options of editing paragraphs, as well as option of editing single words inside editable paragraphs.
I have done this using directives, works fine, except when I have directive ...
1
vote
0answers
8 views
generate skype links with angular
I am trying to generate skype links in a web page using Angular. If I hard-code the link with the skype username (e.g. <a href="skype:some_username?chat&topic=fubar">...) the link operates ...
1
vote
1answer
13 views
AngularJS - How to render a partial with variables?
For example, I have a partial in car-list.html, and I want to render it in several places with different collections of cars. Maybe something like this:
<h1>All New Cars</h1>
<div ...
0
votes
0answers
15 views
Getting user data from server in angular controller without exposing data
I've been trying to get user data from a rails controller to an angular controller:
In my application.html.erb, I define User like so:
angular.element(document).ready(function() {
...
0
votes
0answers
5 views
ngGrid row navigation
Is there any way to remove row navigation when pressing the 'Enter' key, when multiSelect is set to false?
Plnkr example to demonstrate. Thanks.
0
votes
0answers
4 views
Server-side filtering with ng-grid: binding issue?
I'm posting this with reference to this previous post Server-side paging+filtering+sorting for ng-grid with WebAPI, hoping to be able to finally come up with a simple, yet working sample of using ...
4
votes
1answer
26 views
How to use two AngularJS services with same name from different modules?
Supposed I have two modules for AngularJS, e.g. foo and bar, and both of them define a service called baz.
In my application I depend on them by saying:
var app = angular.module('app', [ 'foo', ...
0
votes
1answer
6 views
ng-Repeat don't repeat on start
i'm very new in programming, and of course in AngularJS, but i'll try make my question simple.
I have a Angularjs seed, and one of my partial is using a swiper . I'm trying to use a ng-repeat to fill ...
0
votes
2answers
25 views
Angularjs how to pass in data using a directive
What I am trying to do is make a function so I can change the height of my ng-grid column width. That is irrelevant besides the fact that the scope from my controller needs to communicate with the ...
1
vote
1answer
16 views
AngularJS: Expiring cookies?
I need to be able to store some authentication information in a cookie and set an expiration date.
From what I have seen the $cookie and $cookiestore doesn't support this.
Are there any alternatives ...
1
vote
1answer
15 views
Autocomplete in ng-repeat loop Angular
I just have a question for the Angular heads.
I am fighting on a problem with autocompletes.
My autocompletes events are loaded in a directive etc.
For some reasons I have to put an autocomplete ...
1
vote
0answers
19 views
AngularJs $scope.$apply not working as expected
I am using this controll: http://blueimp.github.io/jQuery-File-Upload/angularjs.html to do file uploading in angular, once the file is uploaded to my server I return a url and would like to display it ...
0
votes
0answers
8 views
angularjs dynamic static short urls
I have a node.js server with express.
is it possible via routing to get short like:
http://myurl.com/kdkw8
where "kdkw8" is a key from the database (generated random).
youtube has as well such ...