Difference between revisions of "HTML Tag"

From SmartWiki
Jump to: navigation, search
(Created page with 'The ''HTML Tag'' is a setting in a custom field that allows the system administrator to change the behavior of the field. ==See Also== * [[Changing Text to Up…')
 
(Changing the Style of the Field)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
The ''HTML Tag'' is a setting in a [[custom fields|custom field]] that allows the system administrator to change the behavior of the field.  
 
The ''HTML Tag'' is a setting in a [[custom fields|custom field]] that allows the system administrator to change the behavior of the field.  
 +
 +
Examples include:
 +
 +
==Changing the Style of the Field==
 +
 +
style="background-color:#FF0000"
 +
 +
style="color:#FF0000"
 +
 +
style="font-size:12px"
 +
 +
style="font-family:Verdana, Geneva, sans-serif"
 +
 +
style="font-weight:bold"
 +
 +
style="text-decoration:underline"
 +
 +
style="padding: 4px"
 +
 +
style="display: none"
 +
 +
For more HTML help see http://www.w3schools.com/cssref/default.asp
 +
 +
==Displaying Other Fields on the Page Based on Value Selected in Drop-Down==
 +
See [[Show/Hide Header]] page for details.
 +
 +
==Using onFocus==
 +
onFocus="this.value='Populate this text in field when selected.'"
  
 
==See Also==
 
==See Also==
 +
* [[Field Formatting Options]]
 
* [[Changing Text to Uppercase or Lowercase]]
 
* [[Changing Text to Uppercase or Lowercase]]
 
* [[Phone Number Field Validation]]
 
* [[Phone Number Field Validation]]

Latest revision as of 10:00, 2 December 2013

The HTML Tag is a setting in a custom field that allows the system administrator to change the behavior of the field.

Examples include:

Changing the Style of the Field

style="background-color:#FF0000"

style="color:#FF0000"

style="font-size:12px"

style="font-family:Verdana, Geneva, sans-serif"

style="font-weight:bold"

style="text-decoration:underline"

style="padding: 4px"

style="display: none"

For more HTML help see http://www.w3schools.com/cssref/default.asp

Displaying Other Fields on the Page Based on Value Selected in Drop-Down

See Show/Hide Header page for details.

Using onFocus

onFocus="this.value='Populate this text in field when selected.'"

See Also