Hi,
I'm trying to figure out how to get the "All Day" section in the Days and Week view to have a max height.
I've narrowed it down to the following CSS selector but i'm wondering if there's an easier way to achieve this.
.k-scheduler-dayview > tbody > tr:nth-child(
1
) > td > .k-scheduler-times > .k-scheduler-table > tbody > tr:nth-child(
2
),
.k-scheduler-weekview > tbody > tr:nth-child(
1
) > td > .k-scheduler-times > .k-scheduler-table > tbody > tr:nth-child(
2
) {
height
:
100px
!important
;
overflow-y:
auto
!important
;
}
.k-scheduler-header > .k-scheduler-header-wrap > div {
height
:
100px
!important
;
overflow-y:
auto
!important
;
}
One issue i've found going with this method is that on pages where there are no all day events, the height of the row does not correspond to the active area of the row inside it - which means the active area is just 1 row height - i.e. you can't click on the whole all day row to create a new item.
I've tried using the max-height property too but this doesn't seem to work.
Is the correct way to be setting row heights or is there an easier option?
Thanks