Versions Compared

Key

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

...

Code Block
languagejs
titleHide Controls Advanced Conditional Rule
linenumberstruecollapsetrue
if(data.maritalStatus == 'married' && data.includeSpouse)
{
    show = true;
}
else
{
    show = false;
}

...