Populating ref field in new record, coming from filtered view...
I think I have a solution to this, but I want to be sure I'm on the right track (and not missing something simpler / obvious).
For the purposes here, I've got two tables. One is "Checklists". Each just has a name (and an auto-generated ref-list). The second is "List Items". Each list item has a name and a ref to a checklist (isPartOf, etc.). This works fine. I'm using LINKTOFILTEREDVIEW when selecting a checklist to get a deck with only the "owned" items in that list. However, now I want to allow adding an item from that filtered view... From reading similar questions, it sounds like the usual answer is to add an action on the form-saved event that populates any fields. So, two questions:
Is that what I need to do? Also - the default form-saved event does a navigate-backwards. Do I need to keep forcing that to happen (eg, group action that does the field setting and then navigate back?).
I'm pretty sure I can't get the context information I need without extra trickery. This seems similar to the "set the view title for filtered views" problem, where I need to stash the checklist's name in a global per-user table, then fetch it in the sub-view's display title formula? Assuming I go through that, I can also use that same stashed value to populate the new item's checklist ref?