Avatar

Level 2

Bingo! Thank you so much, it is working now. There is just one little detail left: The reset button should be effective on these toggle buttons, too. Which means, when I click on reset, they all should switch back to the “up” state. Optionally, is there a way to apply the reset to the toggle buttons and all other elements selectively, only for this specific subform, without affecting the rest of the page?

I have found the following syntax:

var f1 = this.parent.somExpression + ".Seminar" + ",";
var f2 = f1 + this.parent.somExpression + ".Date" + ",";
var f3 = f2 + this.parent.somExpression + ".AE";
// ...and pass the variable as a parameter.

xfa.host.resetData(f3);

It works only for the first three elements (Seminar, Date & AE), but no more if I add additional lines for more elements, and I am not sure if it can be customized for the toggle buttons.