I’m trying to create a ticketing system with Drupal 8 core. I know Drupal 8 has quick edit module, but that doesnt seem to be working in D8 core. Below is a very basic ticket I made as it just contains:
- ticket subject (title)
- ticket body
- assigned to
- status
- priority
When viewing a ticket or node, I want to be able to be able to ajax edit the status, priority, and assigned to fields. These are dropdown options or taxonomy reference fields. Right now one would have to click on “edit” to edit the node itself to make these changes. But how would one edit these on the same page without reloading to a new page?
I was thinking of using views and exposing the edit form for the same node, but that doesnt seem like its doable.