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

Popular posts from this blog

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -