Is there a way to display record picker as a dropdown?

Hello everyone,

Is there a way to display record picker as a dropdown?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to aishwaryap0266

    a!localVariables(
    local!pickedState,
    local!dropdowndata: rule!qe_getallStates().data,
    local!stateLabels: index(local!dropdowndata, "state", null()),
    local!stateAbbreviations: index(local!dropdowndata, "id", null()),
    a!dropdownField(
    label: "States",
    instructions: "Enter the employee's state of residence.",
    choiceLabels: local!stateLabels,
    choiceValues: local!stateAbbreviations,
    placeholder: "Select a US state",
    value: local!pickedState,
    saveInto: local!pickedState,

    )
    )

Children