Responsive Table #15724
Unanswered
andreaskevn
asked this question in
Help
Responsive Table
#15724
Replies: 1 comment
-
Hi, I’m experiencing the exact same issue on Filament v3.3. I’m trying to conditionally use public static function table(Table $table): Table
{
return $table
->columns([
Stack::make([
TextColumn::make('...'),
TextColumn::make('...'),
TextColumn::make('...'),
])
])
->contentGrid([
'sm' => 1,
]);
} It works well on mobile (stacked looks great), but on desktop, the table headers are missing and just give us sorting filter. I’ve tried a few combinations of responsive breakpoints but haven’t found a clean workaround yet. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Table builder
Package Version
v3.3
How can we help you?
I have a problem with the table builder. I want to use 2 method on showing the data on the table.
What i had tried is, i use stacked only for 'md', but the dekstop in view, table header is missing, but the mobile view is looking good.
I wondering how to showing back the column / table header.
Beta Was this translation helpful? Give feedback.
All reactions