PotatoMato Posted October 22, 2021 Report Share Posted October 22, 2021 Hi everyone. If you want to add a 'Select All' to check all the checkboxes. You may try the code below on your DataPage: HTML Block: Select All<input onclick="toggle(this);" type="checkbox" /> Footer: <script language="JavaScript"> function toggle(source) { var checkboxes = document.querySelectorAll('input[type="checkbox"]'); for (var i = 0; i < checkboxes.length; i++) { if (checkboxes[i] != source) checkboxes[i].checked = source.checked; } } </script> Output: -Potato Meekeee 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.