Copy link to clipboard
Copied
I refer to the count-checkboxes code mentioned here.
I use Option-Fields instead to make only one activated checkbox valid.
How do I change the code to "read" all option-fields?
var nSum = 0;var aCkFlds = this.getField("checkn").getArray();for(var i=0;i<aCkFlds.length;i++){if(aCkFlds[i].isBoxChecked(0))nSum++;}event.value = nSum;
Copy link to clipboard
Copied
I think it's called RADIO-BUTTONS instead of OPTION-FIELDS which is just my german translation of it
Copy link to clipboard
Copied
I found this thread with similiarity and hope someone can help me there.
Copy link to clipboard
Copied
I got it solved with this tutorial blog. Sadly I don't know how to delete this thread