Set name in the actions column.

Hello, how can I assign a name in the <thead> of the actions column? I need to customize an action and it must have a title in the column. Thank you.
3 Replies
Dennis Koch
Dennis Koch2mo ago
I don't think this is doable. You'd need to overwrite the table blade view, which I wouldn't recommend. You can use CSS to add some text though:
th.fi-ta-actions-header-cell.fi-ta-empty-header-cell:before {
content: 'WOOP';
}
th.fi-ta-actions-header-cell.fi-ta-empty-header-cell:before {
content: 'WOOP';
}
Tieme
Tieme2mo ago
There is a recordActionsColumnLabel (not in the docs) you can use if i understand you correct (V4)
$table
->recordActionsColumnLabel("Actions")
$table
->recordActionsColumnLabel("Actions")
Dennis Koch
Dennis Koch2mo ago
Thanks. I think I checked v3 code 😅

Did you find this page helpful?