Conditional fields display and multiselect

Kirby has a powerful apparatus in the conditional fields display - when clause.

See here:

It works smoothly with fields that give only one value like toggle or select and roburstly with text fields.

But I can not seem to make it work with multiselect or tags which are based on arrays.

Is there a trick or is this out of bounds (still)?

This is what a blueprint could look like:

product:
  label: Klæðnaður
  type: multiselect
  options:
    spandexsuit: Skínandi fallegur spandex galli
    mask: Böltað kúl ofurhetjugríma 

details:
  label: Select colour (suit)
  type: select
  default: white
  options:
    blue: Blá
    red: Rauð
    green: Græn
    white: Hvít
  when:
    product: spandex
    
details:
  label: Select colour (mask)
  type: select
  options:
    blue: Blá
    red: Rauð
    green: Græn
    white: hvít
  when:
    product: mask

That’s not possible yet.

1 Like

Thank you @pixelijn

Does anyone know if this is possible yet? Would love to use conditional fields with tags:

fields:
  tags:
    label: Tags
    type: tags
    options:
      - One
      - Two
      - Three
  text:
    label: Writer
    type: writer
    when:
      tags: Two

No, that’s still not possible. When only works with single value fields.