How to expand the planner agenda view to include an additional column

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?

enter image description here

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.

+4
source share
3 answers

, day, week, month, agenda timeline, , kendo.ui Kendo UI .

, edit, remove recurrence. , , , , .

DOM , , .

-

.

+1

-, , :

" " ,

, , 2

+2
      schedulerHeader.append("<th>Rating</th>"); 
      schedulerHeader.append("<th>Time</th>"); 

Hmm, the comment above did not have formatting, so I will post again above. This helps, but I think I need to rewrite the whole template.

The telerik example continues to give the user view in order, but is very simple. This is only a DataHeaderTemplate and event template, it does not add columns.

I am looking for a column after each day, so I can add additional visual rows to show the status. Looks like I need to rewrite the column and header templates. I do not see good examples of what

0
source

All Articles