Repeater displaying all results

Here’s a link to my website: https://www.mvsantiago.com/doctors-trece-martires

My problem is that upon first access on the page, all results are displayed. But choosing a specialization from the dropdown menu works properly.

Hi Ryan,

If no specialization is chosen, then it makes sense that all results are displayed. What display are you expecting?

Yisrael

I was expecting it to display nothing lol. Is it possible to make it happen?

Hmm, seems stark, but anyhooo,

Just clear the data property in the page’s onReady() function:

$w.onReady(function () {
    $w("#myRepeater").data = [];  
});

I hope that helps,

Yisrael