Conditional ng-disabled in AngularJS 1.0.7 -
is possible like:
ng-disabled="x >= y"
in case y == undefined take z (another value) inside ng-disabled expression in angularjs 1.0.7?
you can use code, surely work
ng-disabled="x >= ( y == undefined ? z : y )"
Comments
Post a Comment