Admin list view not showing items I create #1179
Labels
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: joomla/Component-Builder#1179
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I suspect my issue is just something I overlooked. Tips are appreciated.
Steps to reproduce the issue
Follow the old Hello World tutorial and create a component. Install the component. Create multiple "items" via the admin panel.
Expected result
I see a list of my created items in the admin view.
Actual result
Nothing shows in the admin view list. They have been added to the database table.
System information (as much as possible)
Additional comments
Possibly same issue as
#1138 ?
So I discerned that default_body.php in the admin view was not being populated. It just has a line defining $edit. It has no
<?php foreach ($this->items as $i => $item): ?>
etc. for generating an editing table. Where do I go to enable that?Solution: It turns out that the Admin Behaviour was set to Default for these fields. I needed to edit that setting by clicking the first icon (looks like a bullet list) when on the Admin Views page. Alternatively you can edit an Admin View item and then click on the big green button that says "Edit admin fields for this admin view".
What doesn't work: clicking the pencil (edit) icon beside the field name. The setting cannot be found there.