Edit multiple pods on one edit screen?
Hi,
I'm building a database of theatre events and so far pods is working perfectly. I'm just looking to make it easier to update/add/edit events.
Pods I have + their contents:
<br> Events
- --name
- --venue
- --producer
- --cast (pick: Cast - multiple) <br> Cast
- --Name
- --role
- --event (pick: Event - single)
- --person (pick: People - single) <br>
People
- --Name
- --cast member (pick: Cast - multiple)
<br>
What I'm trying to do:
I want a single edit page for an event where I can add/edit cast members; and inside the add/edit cast members area I can add/edit people (pulled as a Pick from the people pod.)
Is something like this possible?
7 Answers
I have added the package I was working on that attempts some of this functionality:
http://podscms.org/packages/inline-pick-form/
I would greatly appreciate feedback for improvement! Thanks.
Are you talking about a similar kind of functionality to the WP post edit page, where you can add new categories on the fly without creating them first on the categories page? This kind of functionality is possible, but requires an input helper to display the secondary pod fields, a pre-save helper to save this secondary pod data, and a lot of javascript to handle an expanding table to add new items on the fly. I'm working on a package to do this, and I'll let you know when I'm done with it.
Yes, that's pretty much exactly what I'm talking about.
I was hoping there'd be an easy way to just include an existing form (the Cast form) into the Events edit page.
Or possibly a way to have the Cast form come up in a popup/dialog. Say if you click a link next to an existing Cast member or an 'add cast member' link.
Anyway, that's great you're working on something like this. What kind of a timeframe are you looking at?
thanks, Scott
I'd actually recommend utilizing the Pods API and using Input Helpers or Output Buffering to adjust the form, then running a post-save helper. You could setup dummy fields on the first pod with a field name you can utilize within your post-save helper.
@clarinetlord - This will actually be built into the new Form API / UI that I'm working on for Pods UI, it will have the ability to add / edit Pod data related to a PICK column, and customize which fields should be shown / editable.
Thanks @clarinetlord - I look forward to playing with your system.
@sc0ttkclark I've been playing with Pods UI. Really great stuff. Not surprised you're gonna add this into your api. I was looking around in there to see if I was missing how to use this feature because that would match the rest of the functionality.
Hi,
Was this added to pods UI?
thanks, Scott


