JChan
JChan
FFilament
Created by JChan on 7/20/2024 in #❓┊help
Repeater Form Size so big
No description
5 replies
FFilament
Created by JChan on 6/19/2024 in #❓┊help
Custom Items in Top bar navigation
I want to put something in the top bar navigation that isn't a regular menu item. But I can't figure out if there is even a way to do it. I want to have a button that drops down a calendar / date picker, and each day is a link to a page (something like /deliveries/day/2024-01-01) Is this something that is even possible? If someone could just give some ideas on how to start. I can't find anything in the documentation that allows for anything in the menu bar that isn't just a link.
6 replies
FFilament
Created by JChan on 6/11/2024 in #❓┊help
Exporter MaxRows check early
Is it possible to make the MaxRows() check in the export action check sooner? I have a very large table. I'd like to let users export small batches from it. Let's say I have a million rows, but usually people only want to export 1000 rows. As I currently understand and am experiencing it, if you have the following:
ExportBulkAction::make()
->exporter(CustomerExporter::class)
->maxRows(2000),
ExportBulkAction::make()
->exporter(CustomerExporter::class)
->maxRows(2000),
Then if you have a million rows selected and you click the bulk exporter, it goes through the long process of loading up the pop-up window and letting you select the columns you want. Only after that does it finally tell you that you can't export that many rows. So is there a way currently to set it so it just quickly looks at the number of rows you have selected, compares it to the MaxRows() setting and then bails right away if they are attempting to export too many?
2 replies