Jacky Peng
Jacky Peng

Reputation: 23

Auto expand the height of event in Kendo-Scheduler?

I'm trying to set the height of the event Dynamically.

I tried eventHeight inside views. It changes all events height. I need a way to auto resize the eventHeight depends on the length of texts.

Here is something I want, but I can't find a way to do the same thing in the Kendo-Scheduler.

http://www.telerik.com/support/kb/aspnet-ajax/scheduler/details/auto-expand-the-height-of-the-appointment-to-accomodate-the-entire-subject-in-month-view

Upvotes: 0

Views: 3052

Answers (1)

Shai
Shai

Reputation: 3872

You need to add the following rule to your CSS file:

.k-event {
    height: auto !important;
}

Upvotes: 0

Related Questions