In SexyContent, I have a data type "Parent" with an "Entity" type data field called "Child". When I am in the edit form for "Parent", I can add or remove values for "Child" that are linked to Parent.
Now, I'd like to add a button in a view that lets a user directly add a "Child" record linked to the "Parent" record being shown in the view... is that possible?
The use case is having users sign up for events. The events are the parent records and the signups would be the child records. I know I could unlink the parents and children, then have the child records have the parent entity ID as one of their fields, and then set the parent entity ID to a disabled field when the user goes to register. But, I thought I'd see if this is possible.
Thanks.