Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 37b6ed3

Browse files
committed
docs(ngModelController): improve $rollbackViewValue description & example
The example has been expanded to make it easier to provoke the behavior that the description is talking about (rollbackViewValue and programmatic model updates) Related #13340
1 parent c5bf9da commit 37b6ed3

File tree

1 file changed

+51
-24
lines changed

1 file changed

+51
-24
lines changed

src/ng/directive/ngModel.js

+51-24
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,14 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
435435
* which may be caused by a pending debounced event or because the input is waiting for a some
436436
* future event.
437437
*
438-
* If you have an input that uses `ng-model-options` to set up debounced events or events such
439-
* as blur you can have a situation where there is a period when the `$viewValue`
440-
* is out of synch with the ngModel's `$modelValue`.
438+
* If you have an input that uses `ng-model-options` to set up debounced updates or updates that
439+
* depend on special events such as blur, you can have a situation where there is a period when
440+
* the `$viewValue` is out of sync with the ngModel's `$modelValue`.
441441
*
442-
* In this case, you can run into difficulties if you try to update the ngModel's `$modelValue`
442+
* In this case, you can use `$rollbackViewValue()` to manually cancel the debounced / future update
443+
* and reset the input to the last committed view value.
444+
*
445+
* It is also possible that you run into difficulties if you try to update the ngModel's `$modelValue`
443446
* programmatically before these debounced/future events have resolved/occurred, because Angular's
444447
* dirty checking mechanism is not able to tell whether the model has actually changed or not.
445448
*
@@ -452,39 +455,63 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
452455
* angular.module('cancel-update-example', [])
453456
*
454457
* .controller('CancelUpdateController', ['$scope', function($scope) {
455-
* $scope.resetWithCancel = function(e) {
456-
* if (e.keyCode == 27) {
457-
* $scope.myForm.myInput1.$rollbackViewValue();
458-
* $scope.myValue = '';
459-
* }
460-
* };
461-
* $scope.resetWithoutCancel = function(e) {
458+
* $scope.model = {};
459+
*
460+
* $scope.setEmpty = function(e, value, rollback) {
462461
* if (e.keyCode == 27) {
463-
* $scope.myValue = '';
462+
* e.preventDefault();
463+
* if (rollback) {
464+
* $scope.myForm[value].$rollbackViewValue();
465+
* }
466+
* $scope.model[value] = '';
464467
* }
465468
* };
466469
* }]);
467470
* </file>
468471
* <file name="index.html">
469472
* <div ng-controller="CancelUpdateController">
470-
* <p>Try typing something in each input. See that the model only updates when you
471-
* blur off the input.
472-
* </p>
473-
* <p>Now see what happens if you start typing then press the Escape key</p>
473+
* <p>Both of these inputs are only updated if they are blurred. Hitting escape should
474+
* empty them. Follow these steps and observe the difference:</p>
475+
* <ol>
476+
* <li>Type something in the input. You will see that the model is not yet updated</li>
477+
* <li>Press the Escape key.
478+
* <ol>
479+
* <li> In the first example, nothing happens, because the model is already '', and no
480+
* update is detected. If you blur the input, the model will be set to the current view.
481+
* </li>
482+
* <li> In the second example, the pending update is cancelled, and the input is set back
483+
* to the last committed view value (''). Blurring the input does nothing.
484+
* </li>
485+
* </ol>
486+
* </li>
487+
* </ol>
474488
*
475489
* <form name="myForm" ng-model-options="{ updateOn: 'blur' }">
476-
* <p id="inputDescription1">With $rollbackViewValue()</p>
477-
* <input name="myInput1" aria-describedby="inputDescription1" ng-model="myValue"
478-
* ng-keydown="resetWithCancel($event)"><br/>
479-
* myValue: "{{ myValue }}"
490+
* <div>
491+
* <p id="inputDescription1">Without $rollbackViewValue():</p>
492+
* <input name="value1" aria-describedby="inputDescription1" ng-model="model.value1"
493+
* ng-keydown="setEmpty($event, 'value1')">
494+
* value1: "{{ model.value1 }}"
495+
* </div>
480496
*
481-
* <p id="inputDescription2">Without $rollbackViewValue()</p>
482-
* <input name="myInput2" aria-describedby="inputDescription2" ng-model="myValue"
483-
* ng-keydown="resetWithoutCancel($event)"><br/>
484-
* myValue: "{{ myValue }}"
497+
* <div>
498+
* <p id="inputDescription2">With $rollbackViewValue():</p>
499+
* <input name="value2" aria-describedby="inputDescription2" ng-model="model.value2"
500+
* ng-keydown="setEmpty($event, 'value2', true)">
501+
* value2: "{{ model.value2 }}"
502+
* </div>
485503
* </form>
486504
* </div>
487505
* </file>
506+
<file name="style.css">
507+
div {
508+
display: table-cell;
509+
}
510+
div:nth-child(1) {
511+
padding-right: 30px;
512+
}
513+
514+
</file>
488515
* </example>
489516
*/
490517
this.$rollbackViewValue = function() {

0 commit comments

Comments
 (0)