I am using Kendo Scheduler control. By default, it displays Date, Time, and Event in the Agenda view. How to increase the view of the agenda planner to include an additional column, as shown in the attached image?

I tried the templates as shown below.
<script id="event-template" type="text/x-kendo-template">
<button class="edit-event" data-uid="#=uid#">Custom Column</button>
<div>Notes: #: notes#</div>
</div>
</script>
and in the initialization of kendo I added the code below
views: [
{
type: "agenda",
eventTemplate: $("#event-template").html()
},
],
But it did not display as expected :(
I tried the Kendo Forum link under the url but it did not redirect me to any solution.
source
share