Is there anyway that I can bind two model values to one input field?
Suppose I have input field which I want to be the value of two variables in the scope something
You cannot, but there are some workarounds.
$scope.$watch('sn_number', function(v){
$scope.id = v;
});
You would need to watch also for changes in id if you want to keep them in sync.
Example here