Font Size:

FormUtil

This page details the FormUtil endpoints and the actions they support. It covers key functions, parameters, and sample code for easy implementation.

  • URL: /jw/js/json/formUtil.js
  • Auto included in page using form.
  • Convenient method to interact with form field.

 

getField(fieldId)

Used to gets the field object of a form field.

  • Parameters:
    • fieldId - id of a form field
  • Sample code:
var field = FormUtil.getField("field1");
$(field).val("test"); //set value

 

getFieldsAsUrlQueryString(fields)

Used to generate the field value as url query parameter string.

  • Parameters:
    • fields - an array contains objects with "field", "param" and "defaultValue" attributes.
      • field: id of a form field
      • param: parameter name to be used
      • defaultValue: value to be used when the field return empty value (Optional)
  • Sample code:
var fields = [
    {"field":"field1", "param":"p_field1"},
    {"field":"field2", "param":"p_field2"},
    {"field":"field3", "param":"p_field3", "defaultValue":"default value"},
];
  
var queryString = FormUtil.getFieldsAsUrlQueryString(fields);
console.log(queryString); //p_field1=Field1%20value&p_field2=Field2%20value;Field2%20second%20value&p_field3=default%20value

 

getGridCells(cellFieldId)

Used to get the cell objects of every row of a grid field.

  • Parameters:
    • cellFieldId - Grid Field Id and the cell id separated by a dot ".". Eg. gridId.cellId
  • Sample code: 
var cells = FormUtil.getGridCells("gridId.field1");
$(cells).each(function(){
    //do something
});

 

getGridCellValues(cellFieldId)

Used to get the cell values of every row of a grid field and return it in an array.

  • Parameters:
    • cellFieldId - Grid Field Id and the cell id separated by a dot ".". Eg. gridId.cellId
  • Sample code:
var values = FormUtil.getGridCellValues("gridId.field1");
for (var i = 0; i < values.length; i++) {
    console.log(values[i]); //i equals to row number start from 0
}

 

getValue(fieldId)

Used to get the value of a form field.

  • Parameters:
    • fieldId - id of a form field
  • Sample code.
var value = FormUtil.getValue("field1");

 

// you could also use it to get value from a subform
// FormUtil.getValue("subformElementId_subformTargetFormId_subformFieldID")
 
// using Expenses Claim App as an example, and you are in the ExpensesClaim form and wish to get the title value from the subform
// parent form ID = ExpensesClaim
// subform ID in parent form = sfD
// child form ID = ExpensesClaimNew
// the field ID = title
 
var value = FormUtil.getValue("sfD_ExpensesClaimNew_title")
 

getValues(fieldId)

Used to get the values of a form field. Values will return in an array. 

  • Parameters:
    • fieldId - id of a form field
  • Sample code: 
var values = FormUtil.getValues("field1");
for (var i = 0; i < values.length; i++) {
    console.log(values[i]);
}

 

Created by Aadrian Last modified by Aadrian on Mar 12, 2025