This is a migrated thread and some comments may be shown as answers.

Scheduler - how to set column header color?

4 Answers 226 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Bob
Top achievements
Rank 1
Bob asked on 21 Dec 2012, 06:51 PM
Hi, new to scheduler control.  How do I set the background-color on the column header (where Weekday names are)?

4 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 24 Dec 2012, 04:33 AM
H,

I suppose you want to set color for the header. Try setting the CSS as shown below.
CSS:
.RadScheduler .rsHeader h2
 {
            color: Red !important;
}

Thanks,
Princy.
0
Bob
Top achievements
Rank 1
answered on 26 Dec 2012, 03:20 PM
Not the main header...but the row of Weekday names
0
Princy
Top achievements
Rank 2
answered on 27 Dec 2012, 04:36 AM
Hi,

Try setting the CSS as shown below.

CSS:
.RadScheduler .rsDateHeader
        {
            color: Red !important;
        }

Thanks,
Princy.
0
Bob
Top achievements
Rank 1
answered on 27 Dec 2012, 02:41 PM
This is what ended up working for me.  Thanks for replies.

div.RadScheduler .rsHorizontalHeaderTable tr th div
{
    height:100%;
    background-color: #D3DEEF;
}
Tags
Scheduler
Asked by
Bob
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Bob
Top achievements
Rank 1
Share this question
or