Using tags from other page in a structure field

Hey.

I try to use a structure field that takes tags from other pages. So far it works - The only problem I face now is that in the columns, I have no access to the subcategory. It stays empty.

.txt

----

Partner:

- 
  partner: partner/NAMEDERFIRMA
  subcategory: Gärntern

----
partners:
            type: fields
            fields:
              partner:
                label: Partner
                type: structure
                columns:
                  partner:
                      width: 1/2
                  subcategory:
                      width: 1/2

                fields:
                  partner:
                    label: Partner
                    type: select
                    options:
                      type: query
                      query: site.find("partner").children
                  subcategory:
                    label: Kategorien
                    type: select
                    options:
                      type: query
                      query: site.find("partner").subcategories.split
                      value: "{{ arrayItem.value }}"

Looks like there is no second column at all, double-check your indentation.

1 Like