I was trying to give a value to textfield using ngvalue and textarea has that value but it when I submit it, it recognized as textarea is empty.
<textarea ng-value="main.record.basic_info.application_letter"
class="form-control"
ng-model="main.record.apply_job.cover_letter"
name="name" rows="15" cols="80" style="resize: none">
</textarea>
You cannot use these directives together
"It can also be used to achieve one-way binding of a given expression to an input element such as an input[text] or a textarea, when that element does not use ngModel."
You should set this value in your controller rather than use ng-value.