Giant Robo
table ->defaultSort()
this works correctly, however, when I edit an item in the table, the edited item jumps to the top of the table (it changes position)
but I am sorting by
created_at
so editing the record should not change the order of the table.15 replies
multiple select inside a table
can I do this in a
Table
I want the user to add tags while browsing the table, not have to enter the edit page
Table only has a simple select column https://filamentphp.com/docs/3.x/tables/columns/select
could a Custom Column achieve this?4 replies
display <video src=""> element inside table
my record has a
filename
property and I would like to use display it using a <video src="{{$filename}}"> tag inside data table
I have tried making https://filamentphp.com/docs/3.x/tables/columns/custom#view-columns and I'm not having much luck,
how should I approach this?3 replies
Can you have a "Next" and "Prev" button, inside an Edit page
use case: I wan to edit many records, but I need to enter edit page, click back to return to data table, click record, edit it, click back to return to data table
after entering the edit page, I would like to click Next to take me to the edit page of the next record (of the data table)
Does this make sense?
16 replies