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
5 Replies
LeandroFerreira
LeandroFerreira7mo ago
Did you publish views? Are you using the latest Filament version?
Remi Hindriks
Remi HindriksOP7mo ago
yes, and the latest (3.2)
LeandroFerreira
LeandroFerreira7mo ago
probably an issue in your published views
Remi Hindriks
Remi HindriksOP7mo 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
LeandroFerreira7mo ago
I don't know.. if you are using the latest filament version, you should compare the views

Did you find this page helpful?