Skip to main content
February 11, 2025
Question

Migrated Content

  • February 11, 2025
  • 10 replies
  • 0 views

=a!formLayout(

  label: "Hiring Request Form",

  contents: {

    

    /* Section: Request Information */

    a!sectionLayout(

      label: "Request Information",

      contents: {

        a!radioButtonField(

          label: "Are you making this hiring request on behalf of yourself or someone else?",

          choiceLabels: {"Myself", "For Someone Else"},

          choiceValues: {"Myself", "For Someone Else"},

          value: ri!requestFor,

          saveInto: ri!requestFor

        ),

        a!radioButtonField(

          label: "What type of hire do you need?",

          choiceLabels: {"Non-Employee", "Direct Staff"},

          choiceValues: {"Non-Employee", "Direct Staff"},

          value: ri!hireType,

          saveInto: ri!hireType

        ),

        a!radioButtonField(

          label: "What type of request would you like to make?",

          choiceLabels: {"Add New Role", "Request Replacement", "Request Conversion"},

          choiceValues: {"Add New Role", "Request Replacement", "Request Conversion"},

          value: ri!requestType,

          saveInto: ri!requestType

        )

      }

    ),

 

    /* Section: Incumbent Details */

    a!sectionLayout(

      label: "Incumbent Details",

      showWhen: ri!requestType = "Request Replacement",

      contents: {

        a!textField(

          label: "Please provide the incumbent's name",

          value: ri!incumbentName,

          saveInto: ri!incumbentName

        ),

        a!dateField(

          label: "Departure Date",

          value: ri!departureDate,

          saveInto: ri!departureDate

        ),

        a!textField(

          label: "Position ID for this role in R@C (15 characters max)",

          value: ri!positionId,

          saveInto: ri!positionId,

          maxLength: 15

        ),

        a!dropdownField(

          label: "Incumbent's C-Level at Time of Departure",

          choiceLabels: {"C1", "C2", "C3", "C4", "C5"},

          choiceValues: {"C1", "C2", "C3", "C4", "C5"},

          value: ri!cLevel,

          saveInto: ri!cLevel

        )

      }

    ),

 

    /* Section: C-Level Change */

    a!sectionLayout(

      label: "C-Level Change Request",

      showWhen: ri!requestType = "Request Replacement",

      contents: {

        a!radioButtonField(

          label: "Would you like to request for the role's C-level to be changed?",

          choiceLabels: {"Yes", "No"},

          choiceValues: {"Yes", "No"},

          value: ri!cLevelChange,

          saveInto: ri!cLevelChange

        ),

        a!dropdownField(

          label: "Please select the C-Level for this Role",

          choiceLabels: {"C1", "C2", "C3", "C4", "C5"},

          choiceValues: {"C1", "C2", "C3", "C4", "C5"},

          value: ri!newCLevel,

          saveInto: ri!newCLevel,

          showWhen: ri!cLevelChange = "Yes"

        ),

        a!paragraphField(

          label: "Explanation for the Change",

          value: ri!explanation,

          saveInto: ri!explanation,

          showWhen: ri!cLevelChange = "Yes",

          maxLength: 250

        )

      }

    ),

 

    /* Section: Current Role Location */

    a!sectionLayout(

      label: "Current Role Location",

      contents: {

        a!textField(

          label: "What is the current location of this role?",

          value: ri!roleLocation,

          saveInto: ri!roleLocation

        )

      }

    )

  },

  buttons: a!buttonLayout(

    primaryButtons: {

      a!buttonWidget(

        label: "Next",

        style: "PRIMARY",

        saveInto: {} /* Add save actions here */,

        validate: true

      )

    },

    secondaryButtons: {

      a!buttonWidget(

        label: "Cancel",

        style: "NORMAL"

      )

    }

  )

)

10 replies

kishorej1999
February 11, 2025

a!formLayout(
  label: "Hiring Request Form",
  contents: {
    /* Section: Request Information */
    a!sectionLayout(
      label: "Request Information",
      contents: {
        a!radioButtonField(
          label: "Are you making this hiring request on behalf of yourself or someone else?",
          choiceLabels: { "Myself", "For Someone Else" },
          choiceValues: { "Myself", "For Someone Else" },
          value: ri!requestFor,
          saveInto: ri!requestFor
        ),
        a!radioButtonField(
          label: "What type of hire do you need?",
          choiceLabels: { "Non-Employee", "Direct Staff" },
          choiceValues: { "Non-Employee", "Direct Staff" },
          value: ri!hireType,
          saveInto: ri!hireType
        ),
        a!radioButtonField(
          label: "What type of request would you like to make?",
          choiceLabels: {
            "Add New Role",
            "Request Replacement",
            "Request Conversion"
          },
          choiceValues: {
            "Add New Role",
            "Request Replacement",
            "Request Conversion"
          },
          value: ri!requestType,
          saveInto: ri!requestType
        )
      }
    ),
    /* Section: Incumbent Details */
    a!sectionLayout(
      label: "Incumbent Details",
      showWhen: ri!requestType = "Request Replacement",
      contents: {
        a!textField(
          label: "Please provide the incumbent's name",
          value: ri!incumbentName,
          saveInto: ri!incumbentName
        ),
        a!dateField(
          label: "Departure Date",
          value: ri!departureDate,
          saveInto: ri!departureDate
        ),
        a!textField(
          label: "Position ID for this role in R@C (15 characters max)",
          value: ri!positionId,
          saveInto: ri!positionId
        ),
        a!dropdownField(
          label: "Incumbent's C-Level at Time of Departure",
          choiceLabels: { "C1", "C2", "C3", "C4", "C5" },
          choiceValues: { "C1", "C2", "C3", "C4", "C5" },
          value: ri!cLevel,
          saveInto: ri!cLevel
        )
      }
    ),
    /* Section: C-Level Change */
    a!sectionLayout(
      label: "C-Level Change Request",
      showWhen: ri!requestType = "Request Replacement",
      contents: {
        a!radioButtonField(
          label: "Would you like to request for the role's C-level to be changed?",
          choiceLabels: { "Yes", "No" },
          choiceValues: { "Yes", "No" },
          value: ri!cLevelChange,
          saveInto: ri!cLevelChange
        ),
        a!dropdownField(
          label: "Please select the C-Level for this Role",
          choiceLabels: { "C1", "C2", "C3", "C4", "C5" },
          choiceValues: { "C1", "C2", "C3", "C4", "C5" },
          value: ri!newCLevel,
          saveInto: ri!newCLevel,
          showWhen: ri!cLevelChange = "Yes"
        ),
        a!paragraphField(
          label: "Explanation for the Change",
          value: ri!explanation,
          saveInto: ri!explanation,
          showWhen: ri!cLevelChange = "Yes"
        )
      }
    ),
    /* Section: Current Role Location */
    a!sectionLayout(
      label: "Current Role Location",
      contents: {
        a!textField(
          label: "What is the current location of this role?",
          value: ri!roleLocation,
          saveInto: ri!roleLocation
        )
      }
    )
  },
  buttons: a!buttonLayout(
    primaryButtons: {
      a!buttonWidget(
        label: "Next",
        style: "SOLID",
        saveInto: {}/* Add save actions here */,
        validate: true
      )
    },
    secondaryButtons: {
      a!buttonWidget(label: "Cancel", style: "LINK")
    }
  )
)

harshm4411
February 11, 2025

Hey,

Please replace style in button widget component.

style (Text): Determines the button's appearance and behavior.

Valid values: "OUTLINE" (default), "GHOST", "LINK", "SOLID".

February 11, 2025

=a!formLayout(

  label: "Hiring Request Form",

  contents: {

    

    /* Section: Request Information */

    a!sectionLayout(

      label: "Request Information",

      contents: {

        a!radioButtonField(

          label: "Are you making this hiring request on behalf of yourself or someone else?",

          choiceLabels: {"Myself", "For Someone Else"},

          choiceValues: {"Myself", "For Someone Else"},

          value: ri!requestFor,

          saveInto: ri!requestFor

        ),

        a!radioButtonField(

          label: "What type of hire do you need?",

          choiceLabels: {"Non-Employee", "Direct Staff"},

          choiceValues: {"Non-Employee", "Direct Staff"},

          value: ri!hireType,

          saveInto: ri!hireType

        ),

        a!radioButtonField(

          label: "What type of request would you like to make?",

          choiceLabels: {"Add New Role", "Request Replacement", "Request Conversion"},

          choiceValues: {"Add New Role", "Request Replacement", "Request Conversion"},

          value: ri!requestType,

          saveInto: ri!requestType

        )

      }

    ),

 

    /* Section: Incumbent Details */

    a!sectionLayout(

      label: "Incumbent Details",

      showWhen: ri!requestType = "Request Replacement",

      contents: {

        a!textField(

          label: "Please provide the incumbent's name",

          value: ri!incumbentName,

          saveInto: ri!incumbentName

        ),

        a!dateField(

          label: "Departure Date",

          value: ri!departureDate,

          saveInto: ri!departureDate

        ),

        a!textField(

          label: "Position ID for this role in R@C (15 characters max)",

          value: ri!positionId,

          saveInto: ri!positionId,

          maxLength: 15

        ),

        a!dropdownField(

          label: "Incumbent's C-Level at Time of Departure",

          choiceLabels: {"C1", "C2", "C3", "C4", "C5"},

          choiceValues: {"C1", "C2", "C3", "C4", "C5"},

          value: ri!cLevel,

          saveInto: ri!cLevel

        )

      }

    ),

 

    /* Section: C-Level Change */

    a!sectionLayout(

      label: "C-Level Change Request",

      showWhen: ri!requestType = "Request Replacement",

      contents: {

        a!radioButtonField(

          label: "Would you like to request for the role's C-level to be changed?",

          choiceLabels: {"Yes", "No"},

          choiceValues: {"Yes", "No"},

          value: ri!cLevelChange,

          saveInto: ri!cLevelChange

        ),

        a!dropdownField(

          label: "Please select the C-Level for this Role",

          choiceLabels: {"C1", "C2", "C3", "C4", "C5"},

          choiceValues: {"C1", "C2", "C3", "C4", "C5"},

          value: ri!newCLevel,

          saveInto: ri!newCLevel,

          showWhen: ri!cLevelChange = "Yes"

        ),

        a!paragraphField(

          label: "Explanation for the Change",

          value: ri!explanation,

          saveInto: ri!explanation,

          showWhen: ri!cLevelChange = "Yes",

          maxLength: 250

        )

      }

    ),

 

    /* Section: Current Role Location */

    a!sectionLayout(

      label: "Current Role Location",

      contents: {

        a!textField(

          label: "What is the current location of this role?",

          value: ri!roleLocation,

          saveInto: ri!roleLocation

        )

      }

    )

  },

  buttons: a!buttonLayout(

    primaryButtons: {

      a!buttonWidget(

        label: "Next",

        style: "PRIMARY",

        saveInto: {} /* Add save actions here */,

        validate: true

      )

    },

    secondaryButtons: {

      a!buttonWidget(

        label: "Cancel",

        style: "NORMAL"

      )

    }

  )

)

gayatria0439
February 11, 2025

Hi [mention:0591d80bf3a5406ebeb3855605fe90c0:e9ed411860ed4f2ba0265705b8793d05] ,

You need to use characterLimit, but you've used maxLength. Please replace that. Also, you have used PRIMARY and Normal as button styles, but you should use Primary or Secondary or any other valid hexacode or null, depending on your buttons or as per the requirements.

gayatria0439
February 11, 2025

here is the Updated code

a!formLayout(
  label: "Hiring Request Form",
  contents: {
    /* Section: Request Information */
    a!sectionLayout(
      label: "Request Information",
      contents: {
        a!radioButtonField(
          label: "Are you making this hiring request on behalf of yourself or someone else?",
          choiceLabels: { "Myself", "For Someone Else" },
          choiceValues: { "Myself", "For Someone Else" },
          value: ri!requestFor,
          saveInto: ri!requestFor
        ),
        a!radioButtonField(
          label: "What type of hire do you need?",
          choiceLabels: { "Non-Employee", "Direct Staff" },
          choiceValues: { "Non-Employee", "Direct Staff" },
          value: ri!hireType,
          saveInto: ri!hireType
        ),
        a!radioButtonField(
          label: "What type of request would you like to make?",
          choiceLabels: {
            "Add New Role",
            "Request Replacement",
            "Request Conversion"
          },
          choiceValues: {
            "Add New Role",
            "Request Replacement",
            "Request Conversion"
          },
          value: ri!requestType,
          saveInto: ri!requestType
        )
      }
    ),
    /* Section: Incumbent Details */
    a!sectionLayout(
      label: "Incumbent Details",
      showWhen: ri!requestType = "Request Replacement",
      contents: {
        a!textField(
          label: "Please provide the incumbent's name",
          value: ri!incumbentName,
          saveInto: ri!incumbentName
        ),
        a!dateField(
          label: "Departure Date",
          value: ri!departureDate,
          saveInto: ri!departureDate
        ),
        a!textField(
          label: "Position ID for this role in R@C (15 characters max)",
          value: ri!positionId,
          saveInto: ri!positionId,
          characterLimit: 15
        ),
        a!dropdownField(
          label: "Incumbent's C-Level at Time of Departure",
          choiceLabels: { "C1", "C2", "C3", "C4", "C5" },
          choiceValues: { "C1", "C2", "C3", "C4", "C5" },
          value: ri!cLevel,
          saveInto: ri!cLevel
        )
      }
    ),
    /* Section: C-Level Change */
    a!sectionLayout(
      label: "C-Level Change Request",
      showWhen: ri!requestType = "Request Replacement",
      contents: {
        a!radioButtonField(
          label: "Would you like to request for the role's C-level to be changed?",
          choiceLabels: { "Yes", "No" },
          choiceValues: { "Yes", "No" },
          value: ri!cLevelChange,
          saveInto: ri!cLevelChange
        ),
        a!dropdownField(
          label: "Please select the C-Level for this Role",
          choiceLabels: { "C1", "C2", "C3", "C4", "C5" },
          choiceValues: { "C1", "C2", "C3", "C4", "C5" },
          value: ri!newCLevel,
          saveInto: ri!newCLevel,
          showWhen: ri!cLevelChange = "Yes"
        ),
        a!paragraphField(
          label: "Explanation for the Change",
          value: ri!explanation,
          saveInto: ri!explanation,
          showWhen: ri!cLevelChange = "Yes",
          characterLimit: 250
        )
      }
    ),
    /* Section: Current Role Location */
    a!sectionLayout(
      label: "Current Role Location",
      contents: {
        a!textField(
          label: "What is the current location of this role?",
          value: ri!roleLocation,
          saveInto: ri!roleLocation
        )
      }
    )
  },
  buttons: a!buttonLayout(
    primaryButtons: {
      a!buttonWidget(
        label: "Next",
        style: "SOLID",
        /* Add save actions here */
        saveInto: {},
        validate: true
      )
    },
    secondaryButtons: {
      a!buttonWidget(
        label: "Cancel",
        style: "SOLID",
        color: "NEGATIVE"
      )
    }
  )
)

February 11, 2025

=a!formLayout(

  label: "Request Replacement - Incumbent Details",

  contents: {

    

    /* Section 1: Incumbent Details */

    a!sectionLayout(

      label: "Incumbent Details",

      contents: {

        a!textField(

          label: "Please provide the incumbent's name",

          value: ri!incumbentName,

          saveInto: ri!incumbentName,

          required: true

        ),

        a!dateField(

          label: "Departure Date",

          value: ri!departureDate,

          saveInto: ri!departureDate,

          required: true

        ),

        a!textField(

          label: "Position ID for this role in R@C (15 characters max)",

          value: ri!positionId,

          saveInto: ri!positionId,

          maxLength: 15,

          required: true

        ),

        a!dropdownField(

          label: "Incumbent's C-Level at Time of Departure",

          choiceLabels: {"C1", "C2", "C3", "C4", "C5"},

          choiceValues: {"C1", "C2", "C3", "C4", "C5"},

          value: ri!cLevelAtDeparture,

          saveInto: ri!cLevelAtDeparture,

          required: true

        )

      }

    ),

    /* Section 2: C-Level Change Request */

    a!sectionLayout(

      label: "C-Level Change Request",

      contents: {

        a!radioButtonField(

          label: "Would you like to request for the role's C-level to be changed?",

          choiceLabels: {"Yes", "No"},

          choiceValues: {"Yes", "No"},

          value: ri!cLevelChange,

          saveInto: ri!cLevelChange,

          required: true

        ),

        a!dropdownField(

          label: "Please select the C-Level for this Role",

          choiceLabels: {"C1", "C2", "C3", "C4", "C5"},

          choiceValues: {"C1", "C2", "C3", "C4", "C5"},

          value: ri!newCLevel,

          saveInto: ri!newCLevel,

          showWhen: ri!cLevelChange = "Yes",

          required: true

        ),

        a!paragraphField(

          label: "Explanation for the Change",

          value: ri!explanationForChange,

          saveInto: ri!explanationForChange,

          showWhen: ri!cLevelChange = "Yes",

          maxLength: 250,

          required: true

        ),

        a!richTextDisplayField(

          labelPosition: "COLLAPSED",

          value: a!richTextItem(

            text: "HR approval is needed for roles that are C15 and above.",

            style: "STRONG"

          ),

          showWhen: ri!cLevelChange = "Yes"

        )

      }

    ),

    /* Section 3: Role Location */

    a!sectionLayout(

      label: "Current Role Location",

      contents: {

        a!textField(

          label: "What is the current location of this role?",

          value: ri!roleLocation,

          saveInto: ri!roleLocation,

          required: true

        )

      }

    )

  },

  

  /* Buttons Section */

  buttons: a!buttonLayout(

    primaryButtons: {

      a!buttonWidget(

        label: "Submit",

        style: "PRIMARY",

        validate: true,

        saveInto: { /* Add process or record save logic here */ }

      )

    },

    secondaryButtons: {

      a!buttonWidget(

        label: "Cancel",

        style: "NORMAL"

      )

    }

  )

)

stefanhelzle0001
February 11, 2025

What is the question?

February 11, 2025

=a!formLayout(

  label: "Direct Staff Hiring Request",

  contents: {

    a!sideBySideLayout(

      items: {

        /* Left Side Panel for Section Navigation */

        a!sideBySideItem(

          width: "MEDIUM",

          item: a!richTextDisplayField(

            label: "Navigation Panel",

            labelPosition: "ABOVE",

            value: {

              a!richTextItem(text: "Section Navigation", size: "LARGE", style: "STRONG"),

              char(10),

              a!richTextItem(text: "1. Basic Information", link: a!dynamicLink(value: 1, saveInto: ri!currentStep), style: "EMPHASIS"),

              char(10),

              a!richTextItem(text: "2. Location & Work Details", link: a!dynamicLink(value: 2, saveInto: ri!currentStep), style: "EMPHASIS"),

              char(10),

              a!richTextItem(text: "3. Justification", link: a!dynamicLink(value: 3, saveInto: ri!currentStep), style: "EMPHASIS"),

              char(10),

              a!richTextItem(text: "4. Financial Information", link: a!dynamicLink(value: 4, saveInto: ri!currentStep), style: "EMPHASIS")

            }

          )

        ),

        

        /* Right Side for Existing Form Content */

        a!sideBySideItem(

          width: "WIDE",

          item: a!cardLayout(

            contents: {

              /* Display section based on the current step */

              a!richTextDisplayField(

                value: a!richTextItem(

                  text: if(

                    ri!currentStep = 1,

                    "Basic Information Section",

                    if(

                      ri!currentStep = 2,

                      "Location & Work Details Section",

                      if(

                        ri!currentStep = 3,

                        "Justification Section",

                        "Financial Information Section"

                      )

                    )

                  )

                )

              ),

              

              /* Placeholder for form fields */

              a!textField(label: "Sample Field", value: ri!sampleField, saveInto: ri!sampleField)

            }

          )

        )

      }

    )

  },

  

  buttons: a!buttonLayout(

    primaryButtons: {

      a!buttonWidget(label: "Submit", style: "PRIMARY")

    }

  )

)
=a!formLayout(

  label: "Direct Staff Hiring Request",

  contents: {

    a!sideBySideLayout(

      items: {

        /* Left Side Panel for Section Navigation */

        a!sideBySideItem(

          width: "MEDIUM",

          item: a!richTextDisplayField(

            label: "Navigation Panel",

            labelPosition: "ABOVE",

            value: {

              a!richTextItem(text: "Section Navigation", size: "LARGE", style: "STRONG"),

              char(10),

              a!richTextItem(text: "1. Basic Information", link: a!dynamicLink(value: 1, saveInto: ri!currentStep), style: "EMPHASIS"),

              char(10),

              a!richTextItem(text: "2. Location & Work Details", link: a!dynamicLink(value: 2, saveInto: ri!currentStep), style: "EMPHASIS"),

              char(10),

              a!richTextItem(text: "3. Justification", link: a!dynamicLink(value: 3, saveInto: ri!currentStep), style: "EMPHASIS"),

              char(10),

              a!richTextItem(text: "4. Financial Information", link: a!dynamicLink(value: 4, saveInto: ri!currentStep), style: "EMPHASIS")

            }

          )

        ),

        

        /* Right Side for Existing Form Content */

        a!sideBySideItem(

          width: "WIDE",

          item: a!cardLayout(

            contents: {

              /* Display section based on the current step */

              a!richTextDisplayField(

                value: a!richTextItem(

                  text: if(

                    ri!currentStep = 1,

                    "Basic Information Section",

                    if(

                      ri!currentStep = 2,

                      "Location & Work Details Section",

                      if(

                        ri!currentStep = 3,

                        "Justification Section",

                        "Financial Information Section"

                      )

                    )

                  )

                )

              ),

              

              /* Placeholder for form fields */

              a!textField(label: "Sample Field", value: ri!sampleField, saveInto: ri!sampleField)

            }

          )

        )

      }

    )

  },

  

  buttons: a!buttonLayout(

    primaryButtons: {

      a!buttonWidget(label: "Submit", style: "PRIMARY")

    }

  )

)

February 12, 2025

=a!formLayout(

  label: "Justification Page for Direct Staff",

  contents: {

    a!textField(

      label: "What would be a good title for this role?",

      labelPosition: "ABOVE",

      value: ri!roleTitle,

      saveInto: ri!roleTitle,

      placeholder: "Enter role title (max 60 characters)",

      validations: if(len(ri!roleTitle) > 60, "Title cannot exceed 60 characters.", null),

      required: true

    ),

    a!paragraphField(

      label: "Please tell us about the role, including an overview of its responsibilities and why it is important for your team",

      labelPosition: "ABOVE",

      value: ri!roleOverview,

      saveInto: ri!roleOverview,

      placeholder: "Describe the role (max 200 characters)",

      validations: if(len(ri!roleOverview) > 200, "Description cannot exceed 200 characters.", null),

      required: true

    ),

    a!dropdownField(

      label: "What is the reason this role is necessary?",

      labelPosition: "ABOVE",

      choiceLabels: {"Business Expansion", "Backfill", "New Department"},

      choiceValues: {"BUSINESS_EXPANSION", "BACKFILL", "NEW_DEPARTMENT"},

      value: ri!roleReason,

      saveInto: ri!roleReason,

      placeholder: "Select the reason for this role",

      required: true

    ),

    a!paragraphField(

      label: "Please explain why you selected the reason for this role",

      labelPosition: "ABOVE",

      value: ri!reasonExplanation,

      saveInto: ri!reasonExplanation,

      placeholder: "Explain your reason (max 200 characters)",

      validations: if(len(ri!reasonExplanation) > 200, "Explanation cannot exceed 200 characters.", null),

      required: true

    )

  },

  buttons: a!buttonLayout(

    primaryButtons: {

      a!buttonWidget(

        label: "Submit",

        style: "PRIMARY",

        saveInto: {},

        submit: true

      )

    },

    secondaryButtons: {

      a!buttonWidget(

        label: "Cancel",

        style: "NORMAL",

        saveInto: {},

        submit: false

      )

    }

  )

)

stefanhelzle0001
February 12, 2025

Again, what is your issue, problem or question?