I have a case where two condition need to check for disabling button.
sample code , the way i have did
<div class="{{if isallowed 'notallowed'}} {{if isloading 'notallowed'}}">Submit</div>
Thanks.
I have a case where two condition need to check for disabling button.
sample code , the way i have did
<div class="{{if isallowed 'notallowed'}} {{if isloading 'notallowed'}}">Submit</div>
Thanks.
I like using ember-truth-helpers for the general case:
{{#if (and foo bar)}} foobar! {{/if}}
For tweaking classes (components only), I use classNameBindings.
classNameBindings: [isUrgent]
This adds class is-urgent to component if isUrgent is true in component context.
we can achieve this by using helper.
I have created helper for this and working fine for me.
Helper 'isany-true'
Example