-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ember modifier {{on click
does not work
#961
Comments
villander
changed the title
Ember modifier on click does not work
Ember modifier Aug 25, 2022
{{on click
does not work
@villander Try setting |
@DanMonroe I did it and I have the same errors. <t.body @onSelect={{fn this.transitionToShow b.rowValue.id}} @rows={{this.units}} as |b|>
<b.row
class="table__row flex more-tools-row justify-between relative z-0 cell-clip cursor-pointer" as |r|>
<r.cell
class="py-3 w-1/5"
as |cell column|
>
{{#if (and cell (eq column.valuePath 'vacantOn'))}}
{{moment-format cell "LL"}}
{{else}}
{{cell}}
{{/if}}
</r.cell>
</b.row>
</t.body> |
@twokul any idea here, how to get it working on? |
@villander at a glance, the call stack seems to be looping on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using ember modifier to attach on click action in each row, but it does not work
Also I tried
@onClick={{fn this.transitionToShow b.rowValue.id}}
but the error is the same =/cc // @mixonic @faf0-addepar
The text was updated successfully, but these errors were encountered: