F
Filament2mo ago
bflip

CheckboxList in Repeater broken

I am running into the exact same issue as this guy: https://github.com/filamentphp/filament/discussions/9061 The CheckboxList is selecting all options instead of just the one clicked IF it's sitting within a Repeater schema. What am I missing?
GitHub
Checkbox list issue in repeater · filamentphp filament · Discussi...
I am creating repeater and one of its components i checkbox list of 3 items and whenever I check one of them then all checked!! If I put this component outside the repeater it works fine. I don&#39...
1 Reply
bflip
bflipOP2mo ago
Repeater::make('repeater')->schema([
CheckboxList::make('test')->options(['1', '2']),

]),
Repeater::make('repeater')->schema([
CheckboxList::make('test')->options(['1', '2']),

]),
Won't work

Did you find this page helpful?