How to hide unit names on multiday unit view?

We mainly use the regular unit view, but sometimes we also use multiday unit view displaying one unit at a time for the whole week. In this case there are 2 rows and the second row with unit name is the same for each day.

How can I hide the bottom line with unit name (Sebastian) from the scheduler?

The simplest way would be to use a regular week mode and configure filters in order to show events only from given section.
Filter, ‘selected_section’ refers to the section that should be displayed

[code]scheduler.filter_week = function(id, event){
if(event.section_id == selected_section)
return true;

return false;

}[/code]
switch to the week view scheduler.setCurrentView(null, "week");
docs.dhtmlx.com/scheduler/filtering.html
docs.dhtmlx.com/scheduler/api__s … tview.html