Is it possible to hide repeater items based on current item value?

I am displaying the same repeater twice, but depending on an instance I want to hide certain items based on a type field inside each row. Is it possible?
Solution:
this would only hide inner elements and leave the empty container afaik. I've managed to do this with custom classes for the container and some css magic
Jump to solution
6 Replies
toeknee
toeknee2mo ago
Yes? visible(fn($get) => $get('type') === 'my_type)
Krzysztof
KrzysztofOP2mo ago
it's running even when repeater is empty, are you sure it is accessing the individual repeater rows?
toeknee
toeknee2mo ago
It’s a closure so it will be evaluated on runtime. Using visible on the individual columns will mean it runs on each records column data.
Krzysztof
KrzysztofOP2mo ago
I don't use eloquent, it's a repeater traversing an array inside a form. Each row of repeater has type field.
toeknee
toeknee2mo ago
Correct in in the repeater there is a column i.e. select, textinput the visible is applied to this.
Solution
Krzysztof
Krzysztof2mo ago
this would only hide inner elements and leave the empty container afaik. I've managed to do this with custom classes for the container and some css magic

Did you find this page helpful?