A concept of 'command' used by many programming languages and frameworks. Use this tag with a language and/or framework to indicate context. The C/C++ pre-processor is one language that relies heavily on directives. They call it "pragmas".

learn more… | top users | synonyms

0
votes
1answer
32 views

AngularJS Directive and Isolate Scope

I am trying to understand how to pass data through my directive so that I can bind it at the view level. I believe I understand the separation of controller scope vs. the directive isolate scope but I ...
0
votes
1answer
21 views

How to compile a compiled template in angularjs

I want to be able to have the second directive phone compiled to alert, how should I do this <div ng-app="website"> <div ng-controller="MyController"> <div ...
0
votes
2answers
65 views

How do I pass multiple attributes into an Angular.js attribute directive?

I have an attribute directive restricted as follows: restrict: "A" I need to pass in two attributes; a number and a function/callback, accessing them within the directive using the attrs object. ...
0
votes
1answer
33 views

c++ #elif directive is being discarded

I am trying to create a type declaration based on boundaries template<class B> struct IntDecl { enum { L = B::_l, U = B::_u }; #if (L >=0 && U <=255) typedef char Type; ...
0
votes
1answer
27 views

angularjs attribute name not compiled

I'm trying to generate an attribute name like this : name="id{{myScopeId}}" This perfectly works on most cases, but when I do this on an element which already have a custom directive, it doesn't ...
1
vote
2answers
49 views

Angular Directive Different Template

I have a directive myDirective with variable type. If I run <my-directive type="X"> I want the directive to use templateUrl: x-template.html. If I do <my-directive type="Y"> I want the ...
3
votes
1answer
54 views

AngularJS: When user action impacts both the model and the DOM

This is for an AngularJS app. I have a custom directive that depends on a service. What I'm really curious about is the "angular way" to deal with a user action that impacts both model and DOM. ...
0
votes
0answers
74 views

passing Angular directive into jquery popover

I am trying to pass a dict (channels), which includes key/value pairs for name, and topChannelUserNames, and topChannelIds, the last 2 of which are arrays of strings. I am seeing the correct value ...
0
votes
0answers
8 views

Key Apache Server Directives that Directly Affect Load Time in LAMP Applications

I need the list of apache directives that effect positively on the performance of webpage and a list negatively on the performance of the webpage. Here is the link to the list of apache directives. ...
1
vote
1answer
56 views

Angularjs Two way binding issues

I'm trying to create a dynamic directive that will receive his binding options from attributes. This is my controller view: <div ng-controller="OtCtrl"> <div ng-include ...
1
vote
2answers
264 views

AngularJS - Attribute directive input value change

I've got an AngularJS attribute directive, and I would like to take an action any time its parent input's value changes. Right now I'm doing it with jQuery: angular.module("myDirective", []) ...
0
votes
1answer
120 views

Passing array via attribute to AngularJS directive

I'm currently having a problem when passing an array to a directive via an attribute of that directive. I can read it as a String but i need it as an array so this is what i came up with but it ...
0
votes
3answers
136 views

Angularjs: how to pass scope variables to a directive?

I try to use directive to create and append several tags to a div. I just checked what can I got in the directive: module.directive('createControl', function(){ return function(scope, element, ...
1
vote
2answers
128 views

How do I prerender variable in angular directive for ng-repeat?

I try to create reusable directive something like grid. I want to define data and actions (edit, delete,...) in controller. app.controller('MainCtrl', function($scope) { $scope.data = [ ...
0
votes
1answer
181 views

AngularJS ngModel in directive

I wrote my own directive to parse a input with select2 and gat data via ajax. HTML: <input type="text" ng-model="name" data-ui-event="{keyup: 'searchByName($event)',change: ...
6
votes
3answers
184 views

using directive vs using declaration swap in C++

Please refer to the code below: #include <algorithm> namespace N { template <typename T> class C { public: void SwapWith(C & c) { using ...
0
votes
0answers
18 views

Is Apache wildcard Include directive recursive?

According to Apache manual, the Include directive is recursive when a directory path is used. But is it recursive when using a wildcard path? Include ...
0
votes
1answer
73 views

Calling controller method from linking function click handler does not update view

My problem is the following: I have a directive with an isolated scope, where I want to bind a "click" callback to the element. Long story short, I want to do something similar to this: ... <div ...
0
votes
1answer
27 views

Is it possible to retrieve a Freemarker parameter value in a directive?

I am having something similar to the following in one of my templates: <#assign myVar = ${myValue}-1> but Freemarker is not happy and gives me: Exception in thread "main" ...
1
vote
1answer
340 views

AngularJS - Formatting ng-model before template is rendered in custom directive

I am creating a custom directive in Angular JS. And I want to format the ng-model before the template renders. This is what I have so far: app.js app.directive('editInPlace', function() { ...
2
votes
1answer
190 views

AngularJS directive with ng-repeat not redering

The problem is that I have to manage a list of gum balls that is retrieved from a service. The directive I've created seems to work when I hardcode the elements in the HTML, but when I attempt to ...
0
votes
2answers
131 views

angular directive compile order

I was trying to write a simple directive to generate a (potentially) more complex dom element. I am quite confused about what is going on here but I think the directive I use inside my directive get ...
1
vote
1answer
407 views

AngularJS - Append element to each ng-repeat iteration inside a directive

I'm using a ng-repeat inside a <tr> element together with a directive. Html: <tbody> <tr ng-repeat="row in rows" create-table> <td nowrap ng-repeat="value in row | ...
2
votes
1answer
46 views

Check pre-existence of macro name using a macro

I have coded a header (.h) file with several includes and tens of macros. Before each macro I have coded this: #if defined (MACRO_NAME) #warning "Macro name MACRO_NAME is already in use. Please ...
0
votes
2answers
173 views

How best to wrap the Dynatree tree widget inside an Angular Directive?

I understand the basic features of Angular Controllers and Directives but I am struggling to see how I can best apply them to wrap the Dynatree tree widget that we use. The issue is that Dynatree ...
0
votes
2answers
65 views

AngularJS - Difference between Directives and Templates

can anybody explain the difference between directives and templates in angularjs? I know that directives can e.g. custom tags. but templates are tags, too. so what is the difference between ...
0
votes
1answer
119 views

AngularJS directive communication not having same parent

Let's imagining that I have a directive that contains some data and I want to interpolate it somewhere else in a second component (directive or else), without having a controller linking them. For ...
1
vote
2answers
548 views

dynamic template to directive in angularjs

I need to decide the template based on the date. I saw a good example. But in that example the templates are so simple that he could used strings. In my case I want use php to produce the templates, ...
5
votes
3answers
173 views

AngularJS - permission directive

I am trying to write directive that will evaluate user permissions. In case user is not permitted to see given content the content will not be displayed (done, working fine) requests from ...
2
votes
1answer
783 views

Dynamically add directives on angularjs

I have a very boiled down version of what I am doing that gets the problem across. I have a simple directive. Whenever you click an element it adds another one. However, it needs to be compiled first ...
0
votes
0answers
31 views

Excluding Django URL from authentication on Apache

I have an Apache Authentication back-end that takes care of authentication for my entire django app. The config file is like this: <VirtualHost *:8080> DocumentRoot /url WSGIScriptAlias / ...
0
votes
1answer
54 views

Using controller-scoped data in a directive's jqlite-generated html

This question is similiar to them one asked in Mike's post Using ng-model within a directive. I am writing a page which is small spreadsheet that displays calculated output based on user input ...
2
votes
3answers
368 views

Calling a function when ng-repeat has finished

What I am trying to implement is basically a "on ng repeat finished rendering" handler. I am able to detect when it is done but I can't figure out how to trigger a function from it. Check the ...
0
votes
2answers
56 views

missing a using directive or an assembly reference OperationContext

In My c# windows form it has a error The type or namespace name 'OperationContext' could not be found (are you missing a using directive or an assembly reference?) can any one explain me the ...
0
votes
1answer
654 views

Angular ui-select2 directive doesn't work with AngularJS Validation

I have scoured the internet trying to figure out why the proprietary AngularJS validation is not working when using jQuery.Select2 and the ui-select2 directive - is it a bug?? Edit: ok I've ...
2
votes
1answer
221 views

Testing AngularJS directives that directly consume services

I have a directive that makes use of a service: MyDirective = (myService) -> compile: () -> stuff = myService.getStuff() MyDirective.$inject = ['MyService'] app = A.module ...
0
votes
0answers
91 views

Tree and node directives to render a tree-structure dynamically

This question is a follow-up to Array being reset to undefined after adding items to it. Please read it first to know what the Node object looks like. Anyway, so I got the tree data structure working ...
1
vote
2answers
78 views

Dynamically change template of directory

I'am new to Angular.js, and I am trying to use different templates inside a directive for different clients. The problem is, I have three templates for three kinds of clients, and I want to use ...
0
votes
0answers
469 views

Angular JS - two way binding from within a custom directive

If this question has already been answered please point me to the currect location (I have searched quite a bit but could not find a matching solution - I´m sorry if I missed it !) First of all: at ...
0
votes
3answers
256 views

Angular JS: temporary disable animation provided by directive so it doesn't animate when the page load?

As title, please see this fiddle: http://jsfiddle.net/goodwill/ezNuj/ Which I have added a directive with following code: myApp.directive('ngFadeIn', function() { return function(scope, element, ...
0
votes
1answer
340 views

AngularJS $watch inexplicably changing value of the watched value

I'm trying to implement an animdated version of ng-show and ng-hide; I originally tried to use jQueryUI.toggle('slide', …), but since $watch fires multiple times, my elements were toggling in and then ...
0
votes
1answer
38 views

Android NDK test directive value

I have an Android project, using Android NDK. In file Application.mk, I use a custom directive named MYDIRECTIVE : APP_CFLAGS := -DMYDIRECTIVE=TEST And in .cpp file, I would like test its value : ...
0
votes
2answers
75 views

Access controller from a directive within a directive that has isolated scope

I'm just starting out with angularJS, and I've having a bit of an issue getting my head around scoping with directives and controllers. In the example I've linked to below, I have a set of two ...
0
votes
6answers
161 views

C++ writing a proper function-like macro

I've been banging my head trying to write a proper #define function-like macro but am getting stuck. Here's the example I'm working with: #include <iostream> #define pMAKE(x,y,z,dest)\ ...
2
votes
3answers
119 views

Objective-C: What is the significance of the “@” (at) symbol for NSLog (@“abc”);?

And also, why is it not necessary for, eg: printf ("abc")
0
votes
1answer
85 views

Angular.js - directive is called but used nowhere

Following code is working although I didn't find authDemoApplication somewhere outside this file, not in *.js, nor in .html files. angular.module('angular-auth-demo', ...
1
vote
2answers
303 views

Angular Directive not working with Input type=“number”

I have an input in a form that looks like this: <input type="number" name="inputStageNumTeams" id="inputStageNumTeams" ng-model="s.numTeams" validate-greaterthan="2" required> However, for ...
0
votes
2answers
386 views

AngularJS: set $scope property in callback function

I'm trying to use AngularUI directive calendar and set its source in callback function in my own directive (so basically I wrap directive into directive). So use of my directive in html is: ...
1
vote
1answer
54 views

When should you disable JSP buffering?

Some documentation on Oracle's website (http://docs.oracle.com/cd/A97688_16/generic.903/bp/j2ee.htm, 3.1.12 Disable JSP Page Buffer If Not Used) says: If you are not using any JSP features that ...
2
votes
2answers
231 views

How do I target only certain elements with the same directive, without changing the markup?

I've been researching this for a few hours now. Let's say I have a jQuery selector of $('#bottom .downloads .links a').click..... How can I do the same type of thing in an Angular directive? This ...

1 2 3