Multiple classes for an event

Hi,

has I understand scheduler.templates.event_class an event can only get one single class. Is there a way to add multiple classes to an event?

Thanks in advance :slight_smile:

I found a solution but I am not sure if it’s the best one. You can just return multiple classes seperated by a space:

	scheduler.templates.event_class = function(start, end, event) {
		return "class1 class2";
	};

Hello,

It’s really right way. You can add any required number of classes separated by space.