Hello,
I'm trying to implement kendo ui Scheduler .
But I realised that when I have many event in the same day I could see only two evenets and the others are collapsed on three point. And when I click on the point it redirect me to day view to see all the planned events.
I really want to remove the day view and let only Month and agenda View. It is possible to modify the code so when I click on the three point it redirect me to the agenda wiew or could the month view be resized dynamically depending on the number of the events ?
I tried to modify the CSS of the schudeler , but I didn't like the result
<
style
>
.k-scheduler-table td, .k-scheduler-table th
{
height: 15.5em;
}
.k-scheduler-monthview .k-scheduler-table td
{
height: 15.5em;
}
.k-scheduler-timecolumn{
visibility:collapse !important;
width:0 !important;
}
.k-more-events > span {
margin-top: 0em;
height: 20px;
}
div.k-more-events {
font-size: 12px;
height: 20px;
}
.k-scheduler-table td, .k-scheduler-table th {
height: 1em;
padding: .334em .5em;
font-size: 100%;
}
</
style
>