Calendar to the list on that date

Hello, adalo family,

I just want to go from the calendar to the list on that date but I don’t know which calendar to use.
I don’t know if there is such a calendar.

Thank you.

like activities fort that day ?

The calendar components in Adalo are limited. I faced similar issues, so I put together my own calendar strip component.

  • In the users collection, I created 5 date properties, which are the ones that appear on the “calendar strip”.
  • Then I have another date property called “date I’m seeing”, which is the highlighted date in this custom calendar strip, and is used to determine which events are shown on the screen. (the visibility logic to determine which date is highlighted is “show if date property X = date I’m seeing”)
  • Then the arrows on each side either add or subtract one day to each of the 5 date properties of the user, to make the calendar strip move.

Hope it helps!

1 Like

yes

I don’t quite understand how he did it.

Any specific part that’s unclear?

write my own calender component?

You can just put components together to look like the calendar strip component you have on your image.

In my case, I built it for a desktop app and used buttons to make it easier to highlight the “date I’m seeing”.

You can see in the image below that I have a text component on top (set to show the Month Name), 10 buttons (the top 5 are set to show the Day of the Week (short) and the bottom five are set to show the Day Number of each of the dates, to give a similar effect to the calendar strip) , and one arrow icon on each side.

If I click on, for example, one of the buttons saying “user data 2”, it updates the “date I’m seeing” property to be equal to “user data 2”.

If the “date I’m seeing” is equal to “User data 2”, that pair of buttons is in a different color.

The events shown below are the ones whose date = date I’m seeing.

If I click on the right arrow, it updates the five dates to:

  • “user date 1” = “user date 1 + 1”
  • “user date 2” = “user date 2 + 1”
  • etc

Editor

Previewer

1 Like

wow, crazy;
I will try this right away
thank you

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.