Our pure JavaScript Scheduler component


Post by vishnukumar »

I need to make the first row of my bryntum scheduler as different color compared to other rows.
so i have to add any attribute in events data?
i have to make changes in eventrender.tpldata.cls?

Post by pmiklashevich »

You can add a cls to your resource and style it in sass:
let resources = [
        { id : 'r1', name : 'Mike', cls : 'myclass' },
        ....
.myclass {
	background-color: orange;
}

Pavlo Miklashevych
Sr. Frontend Developer


Post by vishnukumar »

It's working :)
Thanks

Post Reply