1
Help for ParamQuery Pro / Re: Get id of selected checkboxes outside of the grid
« on: April 01, 2023, 11:50:10 am »
Worked
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
var array = []
var checkboxes = document.querySelectorAll('input[type=checkbox]:checked');
for (var i = 0; i < checkboxes.length; i++) {
array.push(checkboxes[i].value);
}