ExpandableList isLimited not defined Tables Package

I'm using the tables package, and everything works fine. Except when i try to use an expandablelist in a textcolumn:
TextColumn::make('certificates')
->label(__('Active courses'))
->color('primary')
->badge()
->limitList()
->expandableLimitedList()
->listWithLineBreaks(),
TextColumn::make('certificates')
->label(__('Active courses'))
->color('primary')
->badge()
->limitList()
->expandableLimitedList()
->listWithLineBreaks(),
The show more button isnt shown and the console gives an error about the alpine variable not being defined:
No description
7 Replies
LeandroFerreira
LeandroFerreira8mo ago
Did you publish views? Are you using the latest Filament version?
Remi Hindriks
Remi HindriksOP8mo ago
yes, and the latest (3.2)
LeandroFerreira
LeandroFerreira8mo ago
probably an issue in your published views
Remi Hindriks
Remi HindriksOP8mo ago
<div>
<h6>
{{ __('Students in this group') }}
</h6>
<div class="filament-table-overview">
<div class="bg-wave-foam p-4 rounded-lg">
{{ $this->table }}
</div>
</div>
</div>
<div>
<h6>
{{ __('Students in this group') }}
</h6>
<div class="filament-table-overview">
<div class="bg-wave-foam p-4 rounded-lg">
{{ $this->table }}
</div>
</div>
</div>
what could break alpine in this?
LeandroFerreira
LeandroFerreira8mo ago
I don't know.. if you are using the latest filament version, you should compare the views
lolmaheen
lolmaheen2w ago
facing the same issue is there a solution @LeandroFerreira @Remi Hindriks
Remi Hindriks
Remi HindriksOP2w ago
There isnt. This is a design flaw where a button is nested in a button. Dan indicated this didnt have priority, and probably wouldnt be fixed in v3, possibly v4

Did you find this page helpful?