Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
Available since versionFunction DescriptionDemo

Status
colourGreen
title2.21.5

function cfAddFieldRequired(formId, fieldName)

Adds required field mark / asterisk. This does not make the field required - you need to have an additional validation in place to validate the field's value

Multimedia
namecfAddFieldRequired.mov
width600

Status
colourGreen
title2.21.5

function cfRemoveFieldRequired(formId, fieldName)Removes required field mark / asterisk from a field. Important to know that if the field is set as required in ConfiForms Field Definition then it still remains as required and users must provide a value before they can submit the form. This function only changes the visual appearance of a field label

Status
colourGreen
title2.21.5

function cfAddTabStop(formId, fieldName)Adds "tab stop", meaning that the field will be excluded from form's set of fields when moving around using the "tab" key 

Multimedia
namecfAddTabStop.mov
width600


Status
colourGreen
title2.21.5

function cfRemoveTabStop(formId, fieldName)Removes the "tab stop" marker from a field

Status
colourGreen
title2.22.123

function cfSetValue(formId, fieldName, fieldValue, isAdvanced = false)Set's value on a field. Set "isAdvanced = true" if you want to set the value on "advanced" fields (such as dropdown fields with lookup, etc)

Status
colourGreen
title2.22.123

function cfResetValue(formId, fieldName, fieldValue, isAdvanced = false)Resets value on a field (sets it to empty state).

Status
colourGreen
title2.22.123

function cfSetValueByIndex(formId, fieldName, index, isAdvanced = false)Selects value by index in a dropdown (radio) field. Options start with 0 index (so, the first option will be with index = 0)