Is it possible to reset a form to it's initial values in AngularJS?
I have a simple form with a field with ng-model='my_object.my_value'
, which is disabled. When I start editing it, I copy $scope.my_object
to $scope.my_object_backup
.
If I click cancel, I disable the field and set $scope.my_object = $scope.my_object_backup
. But the value I see in my input doesn't change.
Is there a way to got around this behavior?
I tried setting value="{{my_object.my_value}}"
but it doesn't change anything.