I have a conditional statement making dates before the Start of Month visible but greyed out. If I try to do the same exact statement for the End of Month, it doesn’t work. Tried it a bunch of different ways… Anyone run into this before?
Hi @etaylor ,
Your screenshot shows that the only property being changed is the visibility. There’s nothing changing the appearance (i.e. greying it out). Is it that it’s visible but not changing color? Or not appearing at all?
Try adding a color change to the condition. If it’s just not visible at all, check the dimensions of the element itself – might not be big enough to fit the font size (or decrease the font size).
Hope this helps you track down the issue!
–
Cheers, Gaby
Co-Founder at Coaching No Code Apps
Free Bubble Masterclass
Private Help
Sorry, I was tired and that was definitely not the best explanation of the issue.
This screenshot shows the issue more clearly. 31st of July shows up because of my conditional statement, but Sept. 1,2, & 3 don’t given a similar condition.
I set the inner text color based on the same statement. It works for one but not the other.
The trailing dates are set to display:none despite my condition statement.
I see what you’re saying now. You’re right, the plugin doesn’t generate the dates after the end of the current month (only before… for some reason), but here’s how you can work around it:
- Use 2 Calendar Tool elements: one setup how you have it now another that has the same date + 1 month.
- Set the data source of the RG to the first Calendar Tool’s list of dates merged with the second Calendar Tool’s list of dates. This will generate a list in the order you merged them (month 1 + month 2). As long as your RG has a fixed number of rows, it’ll fill in the trailing dates to fill the rest of the cells and no more.
That should at least give a direction to work around this. Your condition to grey out the next months dates will need to compare that date with your original month.
Hope this helps!
OMG that is such an easy solution to the main problem I’ve had with this plugin. Thank you!