Hi guys! ![]()
In the app I am trying to set the default value of a field to the value of a relationship item’s field.
Let’s say I have the collection event which has several talks. The event has a start_date and an end_date. talk has a single date field and a relational event.
Whenever I create a talk I want to set the default value of talk.date to event.start_date. I tried to set {{ event.start_date }} as the default value of talk.date but this does not work.
Any tips on this issue?