Difference between revisions of "JavaScript functions v1.0"
Jump to navigation
Jump to search
old>Admin |
old>Admin |
||
Line 25: | Line 25: | ||
* '''hideField(fieldName)''' | * '''hideField(fieldName)''' | ||
* '''showField(fieldName)''' | * '''showField(fieldName)''' | ||
Examples | Examples | ||
Line 36: | Line 31: | ||
hideField("StatusID") | hideField("StatusID") | ||
==== Dependent toggling ==== | |||
Hiding and showing fields can be made dependent on classes in the TempusServaPage | Hiding and showing fields can be made dependent on classes in the TempusServaPage | ||
Line 48: | Line 46: | ||
* '''hideFieldForPageClassAndStatusId(fieldName,className,statusId)''' | * '''hideFieldForPageClassAndStatusId(fieldName,className,statusId)''' | ||
*'''showFieldForPageClassAndStatusId(fieldName,className,statusId)''' | *'''showFieldForPageClassAndStatusId(fieldName,className,statusId)''' | ||
==== Disclaimer ==== | |||
The functions are the equivilant of JQuery | |||
$("#VB_DATA_"+fieldName).parent().parent().hide(); | |||
$("#VB_DATA_"+fieldName).parent().parent().hide(); | |||
This means that fields are expected to be wrapped in TWO layers of html tags for the functions to work | |||
== Other sources == | == Other sources == |
Revision as of 15:40, 6 January 2021
Builtin functions
Handling form values
Display values are handled using standard getter and setters
- getValue(fieldName)
- setValue(fieldName,value)
Example
var a = getValue("NUMBER1"); var b = getValue("NUMBER2"); setValue( "RESULT", (a-b) );
For explicitly getting a value (or ID) use
- getDecimal(fieldName)
Example
var recordId = getDecimal("SELECTRECORD");
Toggling fields (version 5478+)
Note: Hide functions are NOT intended for denying access to data -it will only be hidden in the frontend, but is still accessible to savvy users.
Fields can be shown or hidden calling the fieldname
- hideField(fieldName)
- showField(fieldName)
Examples
hideField("USER")
hideField("StatusID")
Dependent toggling
Hiding and showing fields can be made dependent on classes in the TempusServaPage
- hideFieldForPageClass(fieldName,className)
- showFieldForPageClass(fieldName,className)
Hiding and showing fields can be made dependent on items current status.
- hideFieldForStatusId(fieldName,statusId)
- showFieldForStatusId(fieldName,statusId)
Hiding and showing fields can be made dependent on classes in the TempusServaPage AND items current status.
- hideFieldForPageClassAndStatusId(fieldName,className,statusId)
- showFieldForPageClassAndStatusId(fieldName,className,statusId)
Disclaimer
The functions are the equivilant of JQuery
$("#VB_DATA_"+fieldName).parent().parent().hide(); $("#VB_DATA_"+fieldName).parent().parent().hide();
This means that fields are expected to be wrapped in TWO layers of html tags for the functions to work
Other sources
- JQUERY / SCRIPT CHEATSHEET Readonly radiobuttons, copy text in field, build selectbox from service ...
- HACKING DEPENDENT VALUES Handling dependent lookup values (showing all elements etc.)