Admin:
: Configure Internal Interview Schedule Dynamic FieldAdministrators are able to dynamically display the fields within the Internal Interview Schedule fieldset. This allows administrators to dynamically determine which fields are hidden and/or required.
For example, a Phone interview could display and require a phone number, where a Virtual interview would display and require a meeting link. Dynamic fields allow you to choose the fields best suited for each action.
A JSON configuration allows for extensive granularity in configuration.
Configure
- Create JSON configuration.
- The configuration object can store a list of rules to be applied to the form.
- Create a rule, specifying fieldName (picklist field API
name which can trigger the rule enforcements, copy and paste the name from Object manager) and rules array:
- In the Rules Array, create a rule object for each picklist value which can trigger a form update.
- Specify a value which corresponds to the rules that need to be added to the fields array. The Fields array contains data of form fields which need to be modified.
- Create a field instance containing the property fieldName matching the field API name from the Object Manager.
- Specify the desired attributes:
- IsRequired: Enter “true” or “false”, if the field needs to become required or non-required.
- Hidden: Enter “true”, if the field needs to disappear.
- DefaultValue: Enter “boolean”, “text”, “number” or “null” in order to pre-populate the value.
- In the Rules Array, create a rule object for each picklist value which can trigger a form update.
- Repeat the step for each necessary field.
Was this helpful?