Directives Flashcards

1
Q

ngJq

A

Use this directive to force the angular.element library. This should be used to force either jqLite by leaving ng-jq blank or setting the name of the jquery variable under window (eg. jQuery).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

ng-App

A

Use this directive to auto-bootstrap an AngularJS application. The ngApp directive designates the root element of the application and is typically placed near the root element of the page - e.g. on the or tags.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

a

A

Modifies the default behavior of the html A tag so that the default action is prevented when the href attribute is empty.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

ng-Href

A

Using Angular markup like {{hash}} in an href attribute will make the link go to the wrong URL if the user clicks it before Angular has a chance to replace the {{hash}} markup with its value. Until Angular replaces the markup the link will be broken and will most likely return a 404 error. The ngHref directive solves this problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

ng-Src

A

Using Angular markup like {{hash}} in a src attribute doesn’t work right: The browser will fetch from the URL with the literal text {{hash}} until Angular replaces the expression inside {{hash}}. The ngSrc directive solves this problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

ng-Srcset

A

Using Angular markup like {{hash}} in a srcset attribute doesn’t work right: The browser will fetch from the URL with the literal text {{hash}} until Angular replaces the expression inside {{hash}}. The ngSrcset directive solves this problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

ng-Disabled

A

This directive sets the disabled attribute on the element if the expression inside ngDisabled evaluates to truthy.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

ng-Checked

A

The HTML specification does not require browsers to preserve the values of boolean attributes such as checked. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngChecked directive solves this problem for the checked attribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

ng-Readonly

A

The HTML specification does not require browsers to preserve the values of boolean attributes such as readonly. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngReadonly directive solves this problem for the readonly attribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

ng-Selected

A

The HTML specification does not require browsers to preserve the values of boolean attributes such as selected. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngSelected directive solves this problem for the selected attribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

ng-Open

A

The HTML specification does not require browsers to preserve the values of boolean attributes such as open. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngOpen directive solves this problem for the open attribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

ng-Form

A

Nestable alias of form directive. HTML does not allow nesting of form elements. It is useful to nest forms, for example if the validity of a sub-group of controls needs to be determined.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

form

A

Directive that instantiates FormController.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

textarea

A

HTML textarea element control with angular data-binding. The data-binding and validation properties of this element are exactly the same as those of the input element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

input

A

HTML input element control. When used together with ngModel, it provides data-binding, input state control, and validation. Input control follows HTML5 input types and polyfills the HTML5 validation behavior for older browsers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

ng-Value

A

Binds the given expression to the value of or input[radio], so that when the element is selected, thengModel of that element is set to the bound value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

ng-Bind

A

The ngBind attribute tells Angular to replace the text content of the specified HTML element with the value of a given expression, and to update the text content when the value of that expression changes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

ng-BindTemplate

A

The ngBindTemplate directive specifies that the element text content should be replaced with the interpolation of the template in the ngBindTemplate attribute. Unlike ngBind, the ngBindTemplate can contain multiple {{ }}expressions. This directive is needed since some HTML elements (such as TITLE and OPTION) cannot contain SPAN elements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

ng-BindHtml

A

Evaluates the expression and inserts the resulting HTML into the element in a secure way. By default, the resulting HTML content will be sanitized using the $sanitize service. To utilize this functionality, ensure that $sanitize is available, for example, by including ngSanitize in your module’s dependencies (not in core Angular). In order to use ngSanitize in your module’s dependencies, you need to include “angular-sanitize.js” in your application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

ng-Change

A

Evaluate the given expression when the user changes the input. The expression is evaluated immediately, unlike the JavaScript onchange event which only triggers at the end of a change (usually, when the user leaves the form element or presses the return key).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

ng-Class

A

The ngClass directive allows you to dynamically set CSS classes on an HTML element by databinding an expression that represents all classes to be added.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

ng-ClassOdd

A

The ngClassOdd and ngClassEven directives work exactly as ngClass, except they work in conjunction withngRepeat and take effect only on odd (even) rows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

ng-ClassEven

A

The ngClassOdd and ngClassEven directives work exactly as ngClass, except they work in conjunction withngRepeat and take effect only on odd (even) rows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

ng-Cloak

A

The ngCloak directive is used to prevent the Angular html template from being briefly displayed by the browser in its raw (uncompiled) form while your application is loading. Use this directive to avoid the undesirable flicker effect caused by the html template display.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

ng-Controller

A

The ngController directive attaches a controller class to the view. This is a key aspect of how angular supports the principles behind the Model-View-Controller design pattern.

26
Q

ng-Csp

A

Enables CSP (Content Security Policy) support.

27
Q

ng-Click

A

The ngClick directive allows you to specify custom behavior when an element is clicked.

28
Q

ng-Dblclick

A

The ngDblclick directive allows you to specify custom behavior on a dblclick event.

29
Q

ng-Mousedown

A

The ngMousedown directive allows you to specify custom behavior on mousedown event.

30
Q

ngMouseup

A

Specify custom behavior on mouseup event.

31
Q

ngMouseover

A

Specify custom behavior on mouseover event.

32
Q

ngMouseenter

A

Specify custom behavior on mouseenter event.

33
Q

ngMouseleave

A

Specify custom behavior on mouseleave event.

34
Q

ngMousemove

A

Specify custom behavior on mousemove event.

35
Q

ngKeydown

A

Specify custom behavior on keydown event.

36
Q

ngKeyup

A

Specify custom behavior on keyup event.

37
Q

ngKeypress

A

Specify custom behavior on keypress event.

38
Q

ngSubmit

A

Enables binding angular expressions to onsubmit events.

39
Q

ngFocus

A

Specify custom behavior on focus event.

40
Q

ngBlur

A

Specify custom behavior on blur event.

41
Q

ngCopy

A

Specify custom behavior on copy event.

42
Q

ngCut

A

Specify custom behavior on cut event.

43
Q

ngPaste

A

Specify custom behavior on paste event.

44
Q

ngIf

A

The ngIf directive removes or recreates a portion of the DOM tree based on an {expression}. If the expression assigned to ngIf evaluates to a false value then the element is removed from the DOM, otherwise a clone of the element is reinserted into the DOM.

45
Q

ngInclude

A

Fetches, compiles and includes an external HTML fragment.

46
Q

ngInit

A

The ngInit directive allows you to evaluate an expression in the current scope.

47
Q

ngList

A

Text input that converts between a delimited string and an array of strings. The default delimiter is a comma followed by a space - equivalent to ng-list=”, “. You can specify a custom delimiter as the value of the ngList attribute - for example, ng-list=” | “.

48
Q

ngModel

A

The ngModel directive binds an input,select, textarea (or custom form control) to a property on the scope usingNgModelController, which is created and exposed by this directive.

49
Q

ngModelOptions

A

Allows tuning how model updates are done. Using ngModelOptions you can specify a custom list of events that will trigger a model update and/or a debouncing delay so that the actual update only takes place when a timer expires; this timer will be reset after another change takes place.

50
Q

ngNonBindable

A

The ngNonBindable directive tells Angular not to compile or bind the contents of the current DOM element. This is useful if the element contains what appears to be Angular directives and bindings but which should be ignored by Angular. This could be the case if you have a site that displays snippets of code, for instance.

51
Q

ngOptions

A

The ngOptions attribute can be used to dynamically generate a list of elements for the element using the array or object obtained by evaluating the ngOptions comprehension expression.

52
Q

ngPluralize

A

ngPluralize is a directive that displays messages according to en-US localization rules. These rules are bundled with angular.js, but can be overridden (see Angular i18n dev guide). You configure ngPluralize directive by specifying the mappings between plural categories and the strings to be displayed.

53
Q

ngRepeat

A

The ngRepeat directive instantiates a template once per item from a collection. Each template instance gets its own scope, where the given loop variable is set to the current collection item, and $index is set to the item index or key.

54
Q

ngShow

A

The ngShow directive shows or hides the given HTML element based on the expression provided to the ngShowattribute. The element is shown or hidden by removing or adding the .ng-hide CSS class onto the element. The.ng-hide CSS class is predefined in AngularJS and sets the display style to none (using an !important flag). For CSP mode please add angular-csp.css to your html file (see ngCsp).

55
Q

ngHide

A

The ngHide directive shows or hides the given HTML element based on the expression provided to the ngHideattribute. The element is shown or hidden by removing or adding the ng-hide CSS class onto the element. The.ng-hide CSS class is predefined in AngularJS and sets the display style to none (using an !important flag). For CSP mode please add angular-csp.css to your html file (see ngCsp).

56
Q

ngStyle

A

The ngStyle directive allows you to set CSS style on an HTML element conditionally.

57
Q

ngSwitch

A

The ngSwitch directive is used to conditionally swap DOM structure on your template based on a scope expression. Elements within ngSwitch but without ngSwitchWhen or ngSwitchDefault directives will be preserved at the location as specified in the template.

58
Q

ngTransclude

A

Directive that marks the insertion point for the transcluded DOM of the nearest parent directive that uses transclusion.

59
Q

script

A

Load the content of a

60
Q

select

A

HTML SELECT element with angular data-binding.