Reputation: 23
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.
Upvotes: 0
Views: 3052
Reputation: 3872
You need to add the following rule to your CSS file:
.k-event {
height: auto !important;
}
Upvotes: 0