• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: checkbox count

checkbox count 11 years 4 months ago #25992

I have quite a lot of check boxes on one form. The check boxes are in different sections of the form. I would like to count the number of check boxes at the end of each section on my form. For example I have 6 sections within my form and I have between 6 and 10 checkboxes within each section. I would like to have a textbox with a number value at the end of each section telling me how many check boxes were check within that particular section. Does anyone have a script for that? I have a snippet from support staff but they don't have a full solution and I don't know java script well enough to finish it. I am though trying to figure it out so i can finish it. Here is the snippet they sent me:

<script type="text/JavaScript">
function countcheck(checkName){

inputElems = document.getElementsByName(checkName);
count = 0;
for (i=0; i<inputElems.length; i++) {
if (inputElems.checked === true) {
count++;
document.getElementById("teval_engage7").value = count;
}
}
}
</script>
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!