Custom Calendar Layout in Glide

Good morning, all !

I am a property manager.
I’m developing a Glide app, and I’d like to know if it’s possible to display a custom calendar layout with a specific design.

I’ve attached 3 images showing the type of layout I want to achieve.



Looking forward for any kind of help. Thank you.

@Robert_Petitto king of calendar, I know there is no layout like that, but have you ever CSS something like that?

1 Like

Thank you, Robert, oh that is the direction to achieve that, I’ll try that way.

1 Like

There are 3 ways to approach this:

  • Use AI component, and feed JSON data of multiple rows to it. This doesn’t guarantee success, and you might find yourself stuck in a never-ending loop of wrestling with AI to get it to work and look like you want. But when it works, it’s magic.

  • Feed your data to a JavaScript column and try to put out a HTML string that makes things look like you want. This limits interacting with the calendar, say if you want to open the details view of an event, since you’re actually showing data from multiple rows, but the “click” event can’t reference them separately.

  • CSS on top of the current calendar component. I think it’s too complex and this should be your last resort.