I need to replace the following helper with its corresponding HTML in a view:
@Html.HelperTextBoxFor(model => model.Length, new { @ng_change = "changeArea()" })
I came up with this:
<input type="text" data-ng-model="MyViewModel.Length" class="form-control" />
But I cannot find where to add the new { @ng_change = "changeArea()"}
Can anyone help me please?