I am new to angular and trying to send values through form submit, form works fine and sends updated values if I make changes using typing-in text-boxes but if if try to change values using java-script it does not detect the updated values. Please help
<form #mapFrm = "ngForm" (ngSubmit) = "onClickSubmit(mapFrm)" >
<input type="text" class="form-control" ngModel name="lat" required />
</form>