Inside a ng-repeat
, following code does not work:
<input type="text" ng-bind-html="row.value" />
Following does:
<span ng-bind-html="row.value"></span>
I guess ng-bind-html
is unable to bind to a input
element?
Also does ng-bind-html
actually bind the element with the model (here row.value
)