insert description of each room space,availabilty of seats

Hi,

I need to insert description of each room space,availabilty of seats all those information in unit view of rooms below header itself for that were i should do.the code.

scheduler.createUnitsView({
name:“unit”,
property:“section_id”,
list:sections,
size:10,
step:5
});

Hello,

Do you want to add some information to event text? If so you need to use event_text template:

scheduler.templates.event_text = function(start_date, end_date, event){ return event.text; // example, you need to add your information here };
Kind regards,
Ilya