Is it possible to bind multiple functions to ng-click in AngularJS? If so, how can this be done? If not, what alternative approach can be taken?
<input type="radio" name="op1" ng-click="chkVal()" ng-value="">
There are two functions named chkVal() and deActivate(). The goal is to check the value and disable the radio button with a single click.
While achieving this with one function is feasible, I am interested in learning how to utilize multiple functions for this purpose.
Thank you