When attempting to apply ng-model on a textarea, I encountered an error in IE 11. Here is the code snippet:
<div ng-hide="DoctorDashboardCtrl.showEducation">
<textarea placeholder="2000 Characters Free flow text" width="832px" height="100px" class="form-control" ng-model="DoctorDashboardCtrl.otherdetails.education">
<!-- {{DoctorDashboardCtrl.otherdetails.education}} -->
</textarea>
</div>
After receiving an invalid argument error in IE11, I made the following change:
<div ng-hide="DoctorDashboardCtrl.showEducation">
<textarea placeholder="2000 Characters Free flow text" width="832px" height="100px" class="form-control" ng-bind="DoctorDashboardCtrl.otherdetails.education">
{{DoctorDashboardCtrl.otherdetails.education}}
</textarea>
</div>
However, upon clicking the save button, the value of DoctorDashboardCtrl.otherdetails.education does not update and instead displays the old value. Is there a different solution to this issue or must I continue working with this error persistently?