Hi
I built a simple structure field like this:
# test structure
myStructure:
type: structure
label: My Structure
fields:
title:
type: text
label: Title
test:
type: info
text: "Current Title: {{ item.title }}"
What I am trying to achieve is to get the content of the current structure item’s title and use it in another field. Is this possible at all?
(I am doing this for a custom backend plugin where I need to work with structure values)
Thank you