© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•13mo ago•
7 replies
Mark Chaney

TableColumn with url() results in description not selectable

I dont know about you, but we find it useful for our name column on our Users table to include their email address in the description() area. The problem is that when combined with url() on the column, it wraps the entire cell in anchors and now the description field is no longer selectable. Is there a simple solution for this?
TextColumn::make('name')
    ->description(fn ($record) => $record->email)
    ->url(fn ($record) => route('property-managers.show', $record->property_manager_id)),
TextColumn::make('name')
    ->description(fn ($record) => $record->email)
    ->url(fn ($record) => route('property-managers.show', $record->property_manager_id)),
Solution
Return an HtmlString for the description with an anchor link in it?
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Problem with RepeatableEntry\TableColumn in V4?
FilamentFFilament / ❓┊help
4mo ago
searching in description
FilamentFFilament / ❓┊help
2y ago
HTML with colour in TextColumn description
FilamentFFilament / ❓┊help
12mo ago
Selectable row control
FilamentFFilament / ❓┊help
15mo ago