Hello,
I have problem in my timelineWeekview, that if too many Events are shown, the Columns will be shorter than the Scheduler (EventRow.png).
so I have this class in my css file :
#scheduler .k-scheduler-timelineWeekview tr:nth-child(
2
) td:nth-child(
2
) .k-scheduler-content .k-scheduler-table tbody tr{
height
:
100
vh
!important
;
}
what i need, is doing this in jquery and every time the user adds an Event (scheduler changes its Height !), it should change the height of this row too.
so i tried this :
$(
"#scheduler .k-scheduler-timelineWeekview tr:nth-child(2) td:nth-child(2) .k-scheduler-content .k-scheduler-table tbody tr"
).css(
"height"
,
"widget.height"
);
so i thought that the problem is from the css widget height, that I'm not being able to get the new height, so i tried too many other functions (hide(), remove(), attr(), . . . . . .), but the problem is that i can't select this classes.
any help will be great
thanks in advance
Blackout