Skip to main content
February 14, 2023
Question

Why two key stork is required to select one value from dropdown component?

  • February 14, 2023
  • 4 replies
  • 0 views

Below is the code in which when we want to select option "Four" then we have to press "F" twice.

a!localVariables(
  local!options : {"One","Two","Three","Four","Five"},
  local!selectedValue,
  {
    a!dropdownField(
      label: "Dropdown",
      labelPosition: "ABOVE",
      placeholder: "--- Select a Value ---",
      choiceLabels: local!options,
      choiceValues: local!options,
      value:local!selectedValue,
      saveInto: local!selectedValue,
      searchDisplay: "OFF",
      validations: {}
    )
  }
)

When we press "F" first time the options opens.

And when we press "F" second time only then the value "Four" is selected.

However, it was not the same behavior in previous versions.

Can you help me achieve the same functionality/behavior with version 22.4 ?

    4 replies

    February 14, 2023
    harshitb6843
    February 14, 2023

    Maybe just a new behavior with 22.4 as you mentioned. You can try using the older version of the dropdown by adding 20r2 etc towards the end of it. 

    February 14, 2023

    [mention:689961fb58e44dd3a143d9705472c5f3:e9ed411860ed4f2ba0265705b8793d05] I am creating new application hence cannot use older version.

    February 20, 2023

    I think this is the latest default behavior and there is no option to alter this.