Tables can be hidden as whole or by columns (however, the entire table cannot be disabled, that must be done by column)
//hides the entire table named Table1
Table1.visible = false;
|
Table columns can be individually hidden (unchecking/unsetting the visibility via the properties checkboxes and rules), enabled, password protected, and marked as sensitive, printable, or to hide the label
//set Column0 to visible
Column0.visible = true;
//set Column1 to invisible
Column1.visible = false;
|
Additional columns can be added by dragging palette controls into the table (such as: Dropdown, Radio, Checkbox, Message, Link, Text, TextArea, Date, EMail, Money, Phone, Quantity, Number, T/F, and ComboBox)
- Some controls, such as Signatures, Images, Videos, etc cannot be used within the table
When creating for loops, be sure to use the length of a column, and not the length of the table
//bases for loop on length of Column0 in Table1
for ( var i=0; i < Column0.value.length; i++ ) {
//put logic here
}
|