Tagged Questions
2
votes
2answers
141 views
Can I use Typescript classes as AngularJS controllers using the new 'controller as' syntax
I'm working on a web app using AngularJS and Typescript and I'm trying to find the best way to take advantage of Typescript when it comes to defining controllers. Intuitively a controller would just ...
1
vote
2answers
77 views
I'm confused as to where I would instantiate objects in angular
I just looked through angularjs, and it looks great! But I'm confused about some of the little things. For one, where do I define objects that I want to instatiate elsehwere, and how do I get them ...
0
votes
0answers
50 views
SPA based on liferay&JSF - without MV*-Framework, only jquery?
I'm worrying my brain about a project, that seriously keeps me from sleeping.
SCROLL DOWN TO THE QUESTIONS IF YOU WANT - NEXT PART IS JUST FOR CLARIFICATION
I am working as Frontend-Developer, and ...
1
vote
1answer
64 views
$digest already running - AngularJS
I want to "refresh" my view after some new data is loaded into my factory, but i cant figure out how to do this correctly.
$http.post(url, postKunde).success(function(data, status) {
...
0
votes
2answers
58 views
Save a static copy of a model in AngularJS
Now i have something like this, in the view :
<input ng-model="kunde" type="text">
and a controller trying to save the model to a factory :
$scope.setKunde ($scope.kunde) {
...
0
votes
1answer
59 views
Multiple views for one model in AngularJS
I'm learning AngularJS framework and my background is BackboneJS and it seems I can not figure
out conventional way to do next thing:
I have a readonly list of elements each of which has 'edit' ...
0
votes
2answers
101 views
Angular.JS unsuccessfully tries to load a view with the OPTIONS HTTP method
I have been following along with the AngularJS Fundamentals In 60-ish Minutes tutorial
http://www.youtube.com/watch?v=i9MHigUZKEM
I was doing fine until I got 52 minutes in when the tutor tests ...
0
votes
1answer
108 views
Communication between directives (and other parts) in AngularJS
I'm looking for guidelines about when and why should I use the "require" option in the directive definition,
why not communicate just using the Scope - like most of the times in Angular ?
How is it, ...
1
vote
2answers
108 views
AngularJS - How to run controllers from other controllers?
I'm new to angular, coming from a jquery way of thinking. I've read through most of the main site and bits of others, and I'm trying to further learn by building a customizable dashboard application.
...
1
vote
1answer
270 views
Binding Angular.js actions to Ruby on Rails actions
I've been using rails a while and am starting to fiddle around with integrating Angular.js. To get myself going, I'm making a simple (you guessed it) todo app.
In my rails controller, I've made a ...
0
votes
1answer
140 views
Angular.js Controller can't set properties
I'm using a clone of https://github.com/angular/angular-seed to make a simple Angular.js app. I'm trying to put in some properties to the controllers in order to bind them in my HTML but keep getting ...
1
vote
0answers
144 views
How to bind AngularJS Calendar to a REST resource using MVP
I’m failing to implement the binding between my REST resource and the AngluarJS calendar control. It seems that I’m missing something or just don’t get it logically since all components are working as ...
0
votes
1answer
152 views
AngularJS and MVC Framework, kind of projects?
I'm new into web dev, I'm making my first steps into this world, and I was wondering something, I saw on Wikipedia that Angular was for running "single-page applications"
Let's take a WAF like ASP ...
0
votes
2answers
400 views
Date format in Angular JS
I m new to Angular JS and trying luck to get data from sever and show it in the view.
My View HTML is
<div ng-app ng-controller="FirstCtrl">
<table>
<thead>
...
2
votes
1answer
239 views
AngularJS Binding to WebGL / Canvas
I'm very green to AngularJS. I'm wondering if it's possible to use it when your view is using HTML5 Canvas or WebGL? If so, are there any good tutorials on how you go about this?
I've seen several ...