-
Is it possible to make a Repeater Title dynamic? E.g. make it a link to a more advanced edit page of that item. I have considered using a Browser-based option, but in my case, the Story to Character is one-to-many, not many-to-many. Is this possible, or should I be looking at a different way of achieving my goal, that does not involve a Repeater? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey @kalkoen, It's not currently possible to have a dynamic repeater title, but there's a PR on this that's been kicking around: #149 It's something I regularly find myself wishing for, so I'm thinking of working on this in the near future :) To your question of linking to full-featured forms from repeater items — I believe this could be achieved with a simple link. If both modules are added to the admin routes and only 'story' is added to the CMS navigation, you could include a link in the 'character.blade.php' repeater template to take the user to the full 'character' edit form. The link would be something like: Hope this can help! |
Beta Was this translation helpful? Give feedback.
Hey @kalkoen,
It's not currently possible to have a dynamic repeater title, but there's a PR on this that's been kicking around: #149
It's something I regularly find myself wishing for, so I'm thinking of working on this in the near future :)
To your question of linking to full-featured forms from repeater items — I believe this could be achieved with a simple link. If both modules are added to the admin routes and only 'story' is added to the CMS navigation, you could include a link in the 'character.blade.php' repeater template to take the user to the full 'character' edit form. The link would be something like:
/admin/characters/{$id}/edit
Hope this can help!