javascript - How to check codition in ng-show angular -
i want hide button when other tag value 'done' here code ng-show="{{transaction.status}}!='done'
not work. please me fix it
try code:
ng-show="transaction.status !== 'done'"
or
ng-hide="transaction.status === 'done'"
Comments
Post a Comment