[Time Conductor] Document ng-blur on mct-control

This commit is contained in:
Victor Woeltjen 2015-11-27 14:02:16 -08:00
parent 57d23c3696
commit 02050fa3ef

View File

@ -941,6 +941,12 @@ look at field (see below) to determine which field in the model should be
modified. modified.
* `ngRequired`: True if input is required. * `ngRequired`: True if input is required.
* `ngPattern`: The pattern to match against (for text entry) * `ngPattern`: The pattern to match against (for text entry)
* `ngBlur`: A function that may be invoked to evaluate the expression
associated with the `ng-blur` attribute associated with the control.
* This should be called when the control has lost focus; for controls
which simply wrap or augment `input` elements, this should be fired
on `blur` events associated with those elements, while more complex
custom controls may fire this at the end of more specific interactions.
* `options`: The options for this control, as passed from the `options` property * `options`: The options for this control, as passed from the `options` property
of an individual row definition. of an individual row definition.
* `field`: Name of the field in `ngModel` which will hold the value for this * `field`: Name of the field in `ngModel` which will hold the value for this