{timelineName}_row_class

specifies the CSS class that will be applied to a row of the Timeline view

sectionobjectthe section object
timelineobjectthe timeline object

Available only in PRO Edition

Example

scheduler.templates.timeline_row_class = function(section, timeline){
    return "";
};

Applicable views:Timeline View
Details

The template requires the timeline plugin to be activated.

The default value of the template is:

scheduler.templates.{timelineName}_row_class = function(section, timeline){
    if(timeline.folder_events_available && section.children){
        return "folder";
    }
    return "";
};
See also
Change log

added in v5.3.9

Back to top