Difference between revisions of "Show/Hide Header"

From SmartWiki
Jump to: navigation, search
(Syntax)
(the code supplied does not work, and breaks smartfields spaces removed and semi colon added)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{JavaScript Syntax}}
 
The '''showhideheader''' function allows you to use one [[Custom Field]]  (the '''Control''' field) to show or hide all [[Custom Fields]] that are located under a [[Custom Field Type: Title Bar – Multiple Columns|Title Bar Field]]
 
The '''showhideheader''' function allows you to use one [[Custom Field]]  (the '''Control''' field) to show or hide all [[Custom Fields]] that are located under a [[Custom Field Type: Title Bar – Multiple Columns|Title Bar Field]]
  
Line 39: Line 40:
  
 
* Display the controlled fields when the control field (Custom Field ID 123456) is '''empty''':
 
* Display the controlled fields when the control field (Custom Field ID 123456) is '''empty''':
  onchange="_showhideheader(123456,this.value=='''''')"
+
  onchange="_showhideheader(123456,this.value==''''''')"
  
  
Line 47: Line 48:
 
==Multiple Title Bars==
 
==Multiple Title Bars==
 
'''Multiple headers''' can be hidden/shown simultaneously:
 
'''Multiple headers''' can be hidden/shown simultaneously:
:<font size="3">onchange="_showhideheader(xxxxxx,this.value=='A') ;_showhideheader(yyyyyy,this.value=='B') "  </font>
+
:<font size="3">onchange="_showhideheader(xxxxxx,this.value=='A');_showhideheader(yyyyyy,this.value=='B');"  </font>
  
 
This will display the fields under '''Title Bar''' xxxxxx  when the control field has value '''A''' and display the fields under '''Title Bar''' yyyyyy when the control field has value '''B'''.
 
This will display the fields under '''Title Bar''' xxxxxx  when the control field has value '''A''' and display the fields under '''Title Bar''' yyyyyy when the control field has value '''B'''.
Line 59: Line 60:
 
* Use '''this''' instead of '''this.value'''
 
* Use '''this''' instead of '''this.value'''
 
* ''''Yes;Cancel'''' - values delimited by semi-colon
 
* ''''Yes;Cancel'''' - values delimited by semi-colon
 +
 +
 +
'''Example:'''
 +
* Using a select many check box, but allowing only one value to be selected and controlling the showhideheader if the value is '''equal''' to Yes:
 +
onclick="onlyonechecked(this); _showhideheader(123456,this.value=='Yes')"
  
 
==Notes==
 
==Notes==
Line 64: Line 70:
 
* The set of fields that you wish to control can be located anywhere on the page. With [[Custom Field Type: Dynamic Data – Dynamic Control Field|Dynamic Control Fields]] the fields must be below the control field.  
 
* The set of fields that you wish to control can be located anywhere on the page. With [[Custom Field Type: Dynamic Data – Dynamic Control Field|Dynamic Control Fields]] the fields must be below the control field.  
 
* Unlike the [[Custom Field Type: Dynamic Data – Dynamic Control Field|Dynamic Control Field]], there are no fields "nested" within the control field.
 
* Unlike the [[Custom Field Type: Dynamic Data – Dynamic Control Field|Dynamic Control Field]], there are no fields "nested" within the control field.
* The fields hidden by one control can be used to as control fields themselves. Using nested [[Custom Field Type: Dynamic Data – Dynamic Control Field|Dynamic Control Fields]] (dynamic controls within dynamic controls) is not recommended, and you cannot report below the first level of nested fields.
+
* The fields hidden by one control can be used as control fields themselves. Using nested [[Custom Field Type: Dynamic Data – Dynamic Control Field|Dynamic Control Fields]] (dynamic controls within dynamic controls) is not recommended, and you cannot report below the first level of nested fields.
 
* If using '''[[Allowing Only One Check Box to be Selected|onlyonechecked]]''' on a [[Custom Field Type: Select Many – Check Boxes|Select Many - Check Box]] field and you also want to Show/Hide Header you should use '''_showhideheader''' instead of '''_showhideheadercheckbox'''
 
* If using '''[[Allowing Only One Check Box to be Selected|onlyonechecked]]''' on a [[Custom Field Type: Select Many – Check Boxes|Select Many - Check Box]] field and you also want to Show/Hide Header you should use '''_showhideheader''' instead of '''_showhideheadercheckbox'''
 
  
 
==See Also==
 
==See Also==
Visibility of [[Custom Fields]] can also be controlled using:
+
* [[Making a field under a show/hide header mandatory]]
* [[Role Field Permissions]]  
+
* [[Conditional Lists of Values]]
* [[Status Field Permissions]]
+
{{VisibilityofCustomFields}}
* [[Visibility Condition]]
 
  
 
[[Category:Custom Fields]][[Category:JavaScript]]
 
[[Category:Custom Fields]][[Category:JavaScript]]

Latest revision as of 15:36, 10 February 2016

This feature uses JavaScript syntax
Text code javascript.gif

The showhideheader function allows you to use one Custom Field (the Control field) to show or hide all Custom Fields that are located under a Title Bar Field

  • All fields between the specified Title Bar Field and the subsequent Title Bar Field will have their visibility controlled as a group.
  • The set of fields being hidden can be located anywhere on the same page.
  • Note: The Title Bar Field must not have Use As Tab enabled. (In other words it cannot be a Custom Field Tab).


The control field can be any Custom Field that contains a value:


Syntax

Place the following code in the HTML Tag box of the Control field:

onchange="_showhideheader(xxxxxx,this.value=='Yes')"

Where:

  • xxxxxx is the field ID of the Title Bar field that you wish to control.
  • Yes is the value in the control field that you wish to use to trigger the display of Title Bar and the other Controlled fields in the block.

Note: Check Boxes use a different syntax. See below


Examples:

  • Display the controlled fields when the control field (Custom Field ID 123456) is not equal to Yes:
onchange="_showhideheader(123456,this.value!='Yes')"


  • Multiple Conditions the control field (Custom Field ID 123456) is either Yes or Maybe:
onchange="_showhideheader(123456,(this.value=='Yes' || this.value=='Maybe'))"


  • Display the controlled fields when the control field (Custom Field ID 123456) is empty:
onchange="_showhideheader(123456,this.value=='')"


  • Display the controlled fields when a numerical control field (Custom Field ID 123456) is greater than 6:
onchange="_showhideheader(123456, parseInt(this.value ) >6)"

Multiple Title Bars

Multiple headers can be hidden/shown simultaneously:

onchange="_showhideheader(xxxxxx,this.value=='A');_showhideheader(yyyyyy,this.value=='B');"

This will display the fields under Title Bar xxxxxx when the control field has value A and display the fields under Title Bar yyyyyy when the control field has value B.

Check Boxes

When the Control field is a Select Many Check Box, you will need to use the onclick syntax.

onclick="_showhideheadercheckbox(xxxxxxx,this,'Yes;Cancel')"
  • Use onclick instead of onchange
  • Use this instead of this.value
  • 'Yes;Cancel' - values delimited by semi-colon


Example:

  • Using a select many check box, but allowing only one value to be selected and controlling the showhideheader if the value is equal to Yes:
onclick="onlyonechecked(this); _showhideheader(123456,this.value=='Yes')"

Notes

The difference between this feature and Dynamic Control Field is that:

  • The set of fields that you wish to control can be located anywhere on the page. With Dynamic Control Fields the fields must be below the control field.
  • Unlike the Dynamic Control Field, there are no fields "nested" within the control field.
  • The fields hidden by one control can be used as control fields themselves. Using nested Dynamic Control Fields (dynamic controls within dynamic controls) is not recommended, and you cannot report below the first level of nested fields.
  • If using onlyonechecked on a Select Many - Check Box field and you also want to Show/Hide Header you should use _showhideheader instead of _showhideheadercheckbox

See Also

Visibility of Custom Fields can also be controlled using: