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

Timeslot border position

2 Answers 59 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Csaba Szolomajer
Top achievements
Rank 1
Csaba Szolomajer asked on 16 Sep 2010, 11:14 AM
Hi,

I would like to use scheduler in weekview.
I use thoose properties:  
MinutesPerRow="20" TimeLabelRowSpan="3" NumberOfHoveredRows="3"
My problem is the hour separators are in different place that i recomend. There are thick row separator lines after two rows, I would like display them after three rows. Many thanks, mikro

2 Answers, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 17 Sep 2010, 11:13 AM
Hi Csaba Szolomajer,

You can use the following jQuery code:

function pageLoad() {
            var $ = $telerik.$;
            $('tr.rsAlt').removeClass('rsAlt');
            $("tr:nth-child(3n)").addClass('rsAlt');
        }

The result is shown in the picture below:



Hope this helps.

Regards,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Csaba Szolomajer
Top achievements
Rank 1
answered on 17 Sep 2010, 02:15 PM
THx reply!

Good job it works.

thx, thx thx...

Tags
Scheduler
Asked by
Csaba Szolomajer
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Csaba Szolomajer
Top achievements
Rank 1
Share this question
or