Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ConfiForms Form Definition
formNamef
true

toggletrue

toggleToggle mecheckbox

toggleSection([entry.toggle]);Run custom JavaScripttruetoggle

ConfiForms (FormView) Registrations Control

 

HTML
<script>
function toggleSection(show) {
  if (show) {
    AJS.$('.mysection').show();
  } else {
	AJS.$('.mysection').hide();
  }
}
</script>

...