Page 1 of 1

Hide a Tab when a checkbox is unchecked

Posted: 24 Feb 2015
by coresoul
how do i hide a Tab when a checkbox located outside of tab is unchecked.

Re: Hide a Tab when a checkbox is unchecked

Posted: 25 Feb 2015
by Dmitry Kozlov
Please, follow the instructions from my post:

http://spform.com/forms-designer- ... point-2010

To get the current check-box status use the code below:

Code: Select all

if (fd.field('CheckboxField').value()) {
    // Checked
} else {
    // Unchecked
}