does know if possible have ng-disabled use 2 expressions. disable buttton when clicked, stop double postback disabled until form valid i.e.
<button ng-disabled="!myform.$valid" ...............
but double postback.
is possible ?
thanks in advance
you can like:
ng-disabled="condition1 || condition2"
condition1 validation , contition2 when button has been clicked. setting either true disable button.
Comments
Post a Comment