Tagged Questions
0
votes
0answers
54 views
dynamic load - javascript libraries
I need to separate the javascript libraries from the index.html,
I mean, I have many files which contain controllers, directives, services or styles, for example: search.html, searchController.js, ...
0
votes
1answer
108 views
Input type=“time” binding of value attribute doesn't update the UI with angular
I have an input tag of type="time" as below
<input type='time' id='from' ng-model='data.hall.occupancy.timeRange.from' datify value="{{data.hall.occupancy.timeRange.from | propertime}}"/>
the ...
0
votes
1answer
358 views
angular js dom manipulation with directives
I am trying to use angular directives to dynamically replace an html portion of a portlet of a page.
The html portlet has 2 sections embedded. The top part has the heading which is obtained from a ...
0
votes
1answer
131 views
angularjs listening to dom events
AngularJS: How to listen to DOM Events? this answer provided is using ng-click directive. My scenarios is that I want to avoid this approach.
This is my sample code
Here is my attempt.
...
0
votes
1answer
30 views
AngularJs project doesnt run in ie-8 and onward?
Please help how to run angularjs project in ie-8 and onward?
we have venueSvc angular service that are working fine in other browsers(chrome,firefox,opera etc) but not working in ie-8 and onward.
it ...
0
votes
1answer
658 views
AngularJS IE8 Include
I'm having some issues with Angular includes and HTML 5 shimming.
I've got a header, like so:
<header data-ng-include data-src="'partials/header.html'"></header>
Inside the header.html ...
3
votes
1answer
161 views
How do a build a custom ng-view directive, possibly using ng-includes?
I am creating an app that has a detail view that appears as a modal window above a main view. Each has a URL, but if detail view is accessed from the URL directly I want it to be presented as the main ...
2
votes
3answers
1k views
AngularJS - Access directive's isolate scope from within transcluded content
I'm not sure if this is actually possible, but I'm essentially wanting a reverse of the '&' isolate scope in AngularJS. Here is a Plunkr to demonstrate.
Basically, I have a custom directive set ...
2
votes
1answer
336 views
angular ng-href and svg xlink
I'd like some input on using xml namespaced attributes with angular.
The problem is angular comes with a couple of directives to handle writing attributes such as href and src when angular has parsed ...
3
votes
2answers
3k views
Angular JS installation on netbeans
I installed Angular JS plugin on my netbeans 7 which works fine but I am unable to get the drop down directive suggestion for angular JS like ng-app, ng-model="name" etc. In fact, the HTML page shows ...
9
votes
1answer
3k views
AngularJS file drag and drop in directive
This example does pretty much what I would like to port in Angular-js: HTML5 File API.
I have been trying to google some example of directives however I found old example that do massive use of DOM ...