Error in Multiple Dropdown

Certified Senior Developer

I have used an multiple dropdown box here and whenever i try to select more than 1 option from the multiple dropdown list it is showing this error. Can anyone please guide me through this issue kindly.

Thanks and Regards.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer
    • a!localVariables(
        local!save,
        a!multipleDropdownField(
          choiceLabels: { 1, 2, 3, 4 },
          choiceValues: { 1, 2, 3, 4 },
          labelPosition: "ABOVE",
          placeholder: "--- Select Experience ---",
          value: local!save,
          saveInto: {
            local!save,
            a!save(ri!save, joinarray(local!save, ";"))
          },
          searchDisplay: "AUTO",
          required: true,
          validations: {}
        )
      )
    • Please go through that code, hope you will fix your error.
Reply
  • 0
    Certified Associate Developer
    • a!localVariables(
        local!save,
        a!multipleDropdownField(
          choiceLabels: { 1, 2, 3, 4 },
          choiceValues: { 1, 2, 3, 4 },
          labelPosition: "ABOVE",
          placeholder: "--- Select Experience ---",
          value: local!save,
          saveInto: {
            local!save,
            a!save(ri!save, joinarray(local!save, ";"))
          },
          searchDisplay: "AUTO",
          required: true,
          validations: {}
        )
      )
    • Please go through that code, hope you will fix your error.
Children