Difference between revisions of "JavaScript functions v1.0"

From TempusServa wiki
Jump to navigation Jump to search
old>Admin
old>Admin
Line 36: Line 36:


Hiding and showing fields can be made dependent on classes in the TempusServaPage and/or items current status.
Hiding and showing fields can be made dependent on classes in the TempusServaPage and/or items current status.
* '''hideFieldForPageClass(fieldName)'''
* '''hideFieldForPageClass(fieldName,className)'''
* '''showFieldForPageClass(fieldName)'''
* '''showFieldForPageClass(fieldName,className)'''
* '''hideFieldForStatusId(fieldName)'''
* '''hideFieldForStatusId(fieldName,statusId)'''
* '''showFieldForStatusId(fieldName)'''
* '''showFieldForStatusId(fieldName,statusId)'''
* '''hideFieldForPageClassAndStatusId(fieldName,className,statusId)'''
* '''hideFieldForPageClassAndStatusId(fieldName,className,statusId)'''
*'''showFieldForPageClassAndStatusId(fieldName,className,statusId)'''
*'''showFieldForPageClassAndStatusId(fieldName,className,statusId)'''

Revision as of 16:22, 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+)

Fields can be shown or hidden calling the fieldname

  • hideField(fieldName)
  • showField(fieldName)

The functions are the equivilant of JQuery

  $("#VB_DATA_"+fieldName).parent().parent().hide();
  $("#VB_DATA_"+fieldName).parent().parent().hide();

Examples

  hideField("USER")
  hideField("StatusID")

Hiding and showing fields can be made dependent on classes in the TempusServaPage and/or items current status.

  • hideFieldForPageClass(fieldName,className)
  • showFieldForPageClass(fieldName,className)
  • hideFieldForStatusId(fieldName,statusId)
  • showFieldForStatusId(fieldName,statusId)
  • hideFieldForPageClassAndStatusId(fieldName,className,statusId)
  • showFieldForPageClassAndStatusId(fieldName,className,statusId)

Note: This is NOT intended for denying access to data -it will only be hidden in the frontend, but is still accessible to savvy users.

Other sources