Select box dropdown in tableRepeater is limited
Hi everyone,
Is there a way to display the drop-down list at the top instead of displaying it at the bottom? as you can see in the attached image, the drop-down list is not displayed completely.
2 Replies
Try add ->top()
Or use custom class css
use Filament\Forms\Components\Select;
Select::make('your_field')
->options($yourOptions)
->extraAttributes(['class' => 'custom-dropdown']);
use filament ->optionsLimit(n) features