How to filter Events Dataset by Dropdown value (Event Categories)?

I’m hoping that some expert developer could give me some guidance about the issues. I am trying to show the upcoming events and past events in separate repeater by event
categories dropdown. If any filtering categories result is empty, it will show a text ‘There is no item’.

resutl

Thank you

something like this

.then((results) => {
                if (results.items.length === 0) {
                    $w('#textelement').text = "There are currently no events available for the search criteria you have selected.";
                    $w('#textelement').show();

Hi, Mushi_Bhuiyan !!

Even if it’s not perfect, showing how far you’ve gotten with the code so far will make it easier for the experts in this community to help you! :wink:

1 Like