Skip to content

Chooser

Description

Choose an option from list of options like choose option from dropdown menu

Attributes

  • tile=chooser
  • title
  • storageKey
  • chooser: [Array of objects]
    • title: title to display in the list
    • value: value to display in the list
  • name: Default value which update shared
  • condition: Valid rule condition to decide show chooser or not.

Example

{
  "tile": "chooser",
  "title": "Chooser Testing",
  "name": "val1",
  "storageKey": "val1",
  "chooser": [
    {
      "title": "Test Title 1",
      "value": "val1"
    },
    {
      "title": "Test Title 2",
      "value": "val2"
    }
  ]
}