Tagged Questions
0
votes
2answers
1k 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
312 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 ...
1
vote
1answer
439 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
31 views
AngularJS authenticating multiple routes with resolve
Im trying to authenticate users for most routes in my application.
is there a way to do it globally on all routes? so i do not need to have the following:
resolve : {
//This function is ...
0
votes
1answer
96 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
1answer
614 views
Multiple independent partials in AngularJS
I've been working on a Angular.js tutorial that I now want to extend. It's a simple CRUD app that has a list of templates: list.html (just records in a db with a title and content), a create form: ...
0
votes
1answer
138 views
Confusing about using angularJS with Codigniter
I'm new to front-end MVC and I decide to create a SPApplication then I found this angularJS. Of course, other MVC as well but I prefer angularJS.
Ok, my questions here.
Before this, I normally store ...
2
votes
0answers
199 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 ...
1
vote
0answers
107 views
Client Side MVC (javascript) against Oauth server - confused
we are about to code a client side mvc app in javascript (angularjs). on the server side we ha ve node.js running to serve the templates etc.. i am new the "front end" side of the story - i am ...
0
votes
0answers
118 views
Laravel + AngularJS application structure
Currently im in the process of architecturing an application based on Laravel-4 and AngularJS
I do not want to create a single page application.
Is it ok to structure the application along the ...
0
votes
0answers
65 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 ...
0
votes
0answers
101 views
Dojox Mobile Slider & AngularJS ng-model
I have html slider which's value is updatet with AngularJS' model:
<input type="range" ng-model="value1"/>{{value1}}
This works very well: When I adjut the slider the value is updated.
But ...
0
votes
0answers
139 views
Getting input id from multiple file upload (MVC/Angular)
I have a 2-part form which has both regular inputs and 2 file uploads. Currently, we have angular setup to submit the normal fields, and then call a directive on the upload files to do that process so ...