Scheduler - OnSlotRender Month View

Hi,

I can change the color and other attributes in the OnSlotRender. Is there a way to put some text in the Slot?
I have a calendar and I put different colors depends the occupacy of any day. I would like to put the "seats free" for each day too. But I would not like to put and appointment for that. Is it possible?

Thanks in advance.

You can't put text in a slot but you probably can assign a css class to it and set the text via the :after pseudo selector and the content css attribute.

.free-slot:after {
   display: block;
   content: "Seats free";
}
1 Like

That opened my mind. Thanks @korchev for you really fast response!!