I am making an event / calendar app and I’m having trouble figuring out how to properly display the events. My goal is to have them displayed similar to the image below, with the date only appearing once over the group of events in that date.
I’m trying to do this by having a repeating group, where each cell has the date and event details being displayed, but I only want the event date to be displayed if it is the first time that text is appearing, and not over every single event.
I’m not completely sure how to do this but I have an idea of what I want to do. I’m thinking of different options, both quite similar.
A. Is to make a conditional where the date is only visible if the same text box in the previous cell is not the same text, but I’m not sure that there is a way to access elements from the previous cell.
B. (which is still similar to A) By making a conditional that when the current cells date is not the same as the previous cells date, then the text is visible.
Again, I have an idea of what I need to do but can’t fully grasp how to do so. If any of you know any other, more practical options, I’m grateful for any suggestions.
If you need a clue setting it up, check out this template calendar from @gf_wolfer
You could then have a nested RG in each cell of the calendar that does a search constrained by that cels date as a minimum and that date + 1 day as a maximum
Similar to what @Nocodify mentioned, but I would actually make the parent / main repeating group a list of Texts, not Dates. Just because dates are so precise in Bubble that even if they fall on the same day but a different time, it would be showing as a different date.
Repeating Group
Type: Text
Source: Event List’s Dates:sorted :formatted as mm/DD/yyyy :unique elements
A nested repeating group within the cell
Type: Event
Source: Event List:filtered (this Events date :formatted as mm/DD/yyyy is current cell’s Text)
Thanks so much to all of you!
I started off with @Nocodify’s suggestion with the nested repeating groups but ended up using @gf_wolfer’s method which was a bit simpler and worked great. I also ended up doing something similar to what you said, @jared.gibb, but instead of +1 day as a maximum (because I’m having the repeated group span over a whole week using this day of the week plugin) I used the last day of the week but changed the hour to 23, minutes to 59, and seconds to 59.
Again, thanks to all of you for you help on this!