Is it not possible to set default values for blueprint fields using field values in Kirby 4?
This
fields:
alt:
label: Alternativtext
type: textarea
size: small
default: "{{ file.eichhoernchen }} beim {{ file.aktivitaet }} auf dem {{ file.ort }}"
help: "<strong>{{ file.eichhoernchen }} beim {{ file.aktivitaet }} auf dem {{ file.ort }}</strong>"
Creates a textarea
with the default content “beim auf .” (missing values), while the help
field correctly displays “eichhoernchen beim fressen auf dem balkon”.
So it seems that this approach works for the help
field, but not for type: textarea
. Is there a way to make this work for textarea
as well?