@@ -435,11 +435,14 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
435
435
* which may be caused by a pending debounced event or because the input is waiting for a some
436
436
* future event.
437
437
*
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`.
441
441
*
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`
443
446
* programmatically before these debounced/future events have resolved/occurred, because Angular's
444
447
* dirty checking mechanism is not able to tell whether the model has actually changed or not.
445
448
*
@@ -452,39 +455,63 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
452
455
* angular.module('cancel-update-example', [])
453
456
*
454
457
* .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) {
462
461
* if (e.keyCode == 27) {
463
- * $scope.myValue = '';
462
+ * e.preventDefault();
463
+ * if (rollback) {
464
+ * $scope.myForm[value].$rollbackViewValue();
465
+ * }
466
+ * $scope.model[value] = '';
464
467
* }
465
468
* };
466
469
* }]);
467
470
* </file>
468
471
* <file name="index.html">
469
472
* <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>
474
488
*
475
489
* <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>
480
496
*
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>
485
503
* </form>
486
504
* </div>
487
505
* </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>
488
515
* </example>
489
516
*/
490
517
this . $rollbackViewValue = function ( ) {
0 commit comments