I've an object which contains 100 keys, value pairs.
$scope.obj = {
key1: value1,
key1: value1,
.
.
.
key100: value100
}
I have 100 inputs
<form>
<input value="obj.key1" ng-model="obj.key1" />
<input value="obj.key2" ng-model="obj.key2" />
<input value="obj.key3" ng-model="obj.key3" />
.
.
.
<input value="obj.key100" ng-model="obj.key100" />
<button ng-click="submit> </button>
</form>
When I sumbit the data will send to server. Some time I'll change values and sometimes not. If I change a value in one input I want that key,value
from object. So that I can send server call with that data not to send entire data.