Hide a Tab when a checkbox is unchecked
Posted by coresoul - Feb 24 ’15 at 04:57
how do i hide a Tab when a checkbox located outside of tab is unchecked.
-
Dmitry KozlovAdminMember for: 9 years 8 months 7 days
Please, follow the instructions from my post:
http://formsdesigner.blogspot.com/2013/03/how-to-create-dynamic-forms-with-forms.html
To get the current check-box status use the code below:
if (fd.field('CheckboxField').value()) { // Checked } else { // Unchecked }
Displaying 1 to 1 of 1 messages