We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When clicking a button to trigger table checkbox, data-on-check-click doesn't fire.
When manually clicking the checkbox in table, the event fires.
Is there a way to trigger the checkbox event in code?
<table data-role="table" class="table" data-check="true" data-show-pagination="false" data-show-search="false" data-show-table-info="false" data-show-rows-steps="false" data-on-check-click="checkClick"> <thead> <tr> <td>ColA</td> <td>ColB</td> </tr> </thead> <tbody> <tr> <td>A</td> <td>B</td> </tr> </tbody> </table> <button onclick="buttonclick()">checkbox</button>
<script> function checkClick() { console.log("checkbox clicked....") } function buttonclick() { $("input[type=checkbox]").click(); } </script>
Tested using Metro 4.3.4 in Chrome
The text was updated successfully, but these errors were encountered:
M4Q Events: fix firing events, Metro 4 issue #1476
397c2ad
fixed in 4.3.5, thanks
Sorry, something went wrong.
Thanks, tested and works in 4.3.5
b073985
No branches or pull requests
When clicking a button to trigger table checkbox, data-on-check-click doesn't fire.
When manually clicking the checkbox in table, the event fires.
Is there a way to trigger the checkbox event in code?
Tested using Metro 4.3.4 in Chrome
The text was updated successfully, but these errors were encountered: