Replies: 1 comment
-
Short answer: there’s no built-in “tree view” or enableChildsRow() in Backpack right now. What you can do today:
$this->crud->enableDetailsRow();
$this->crud->allowAccess('details_row');
// either override showDetailsRow($id) or:
$this->crud->setDetailsRowView('your-view');
Notes:
ℹ️ Please note our AI Bot does not reply to follow-ups, this will be the only AI answer in this thread. If the AI helped you find the answer, please mark it as answered or write details below so it can learn. Then close the conversation. If not, please give more information for when a human reads this. ℹ️ Relevant sources: CRUD API Cheat Sheet|Details Row |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
It would be useful to have a CRUD that shows the main records with the classic "+" on the left showing the child records (e.g., invoices and invoice lines).
Something a little different from enableDetailsRow(), like enableChildsRow().
Beta Was this translation helpful? Give feedback.
All reactions