-
I'm working on building out a system that lists events. In the grid view, I'd like to show the date and time as well as some other information in addition to the title and description/body. Do I do that with a partial card? If so, how do I tell the resource to use that card instead of the default? Or, is there a way to add more fields to the default resource cards displayed? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There is no way right now to specify what partial / card to use. You can eject (docs here) and maintain the whole component until there is a native way of doing it. ( @adrianthedev made this PR to pass extra fields to the card #2650 but is closed for now. |
Beta Was this translation helpful? Give feedback.
There is no way right now to specify what partial / card to use. You can eject (docs here) and maintain the whole component until there is a native way of doing it. (
rails generate avo:eject --component Avo::Index::GridItemComponent
)@adrianthedev made this PR to pass extra fields to the card #2650 but is closed for now.