10,730
edits
Line 266: | Line 266: | ||
== Additional form components == | == Additional form components == | ||
; Add Button: Click to add a new button to an existing tab. Use [[Rules_editor#Cell_Click.2C_Button_Click_variables|Button Click]] to set up the action or command associated with the button. | ; Add Button: Click to add a new button to an existing tab. Use [[Rules_editor#Cell_Click.2C_Button_Click_variables|Button Click]] to set up the action or command associated with the button. The following example shows or hides the map tab of your form: | ||
:{| class="wikitable" | |||
| '''If''' '''Condition''' || ChangedItem || Equals || Button_show_hide_map | |||
|- | |||
| '''Then''' || '''If''' '''Condition''' || Tabs.Map.IsVisible || Equals || True | |||
|- | |||
| || '''Then''' '''Step''' || Tabs.Map.IsVisible || Assign || False | |||
|- | |||
| || '''Else''' '''Step''' || Tabs.Map.IsVisible || Assign || True | |||
|} | |||
; Add Grid: Click to add a GridItem to your form: essentially, you can define a table. On the [[Form#Properties pane|'''Properties''' pane]], set Columns and Rows. | ; Add Grid: Click to add a GridItem to your form: essentially, you can define a table. On the [[Form#Properties pane|'''Properties''' pane]], set Columns and Rows. |