This is a migrated thread and some comments may be shown as answers.

JQuery API - How to add Month view here.

2 Answers 52 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
FireHolster
Top achievements
Rank 1
FireHolster asked on 25 Sep 2013, 10:46 PM
Is there a link to get the API details for jquery?

<script>
    $("#scheduler").kendoScheduler({        
        date: new Date("2013/6/6"),        
        allDayEventTemplate: $("#event-template").html(),        
        dataSource: [
          {
              id: 1,
              start: new Date("2013/6/6 08:00 AM"),
              end: new Date("2013/6/6 09:00 AM"),
              isAllDay: true,
              title: "Interview",
              atendees: [1, 2]
          }
        ],
        resources: [
          {
              field: "atendees",
              dataSource: [
               { value: 1, text: "Alex" },
               { value: 2, text: "Bob" }
              ],
              multiple: true
          }
        ]
    });
</script>

2 Answers, 1 is accepted

Sort by
0
FireHolster
Top achievements
Rank 1
answered on 25 Sep 2013, 10:55 PM
Found a way to add the views. but wanted to know from where i can get the Jquery API documentation

 views: [
            "day",
            "week",
            {
                type: "month", selected: true
            }
        ],

0
Rosen
Telerik team
answered on 27 Sep 2013, 08:13 AM
Hello FireHolster,

You can find KendoUI documentation at this location. The API reference section for the Scheduler widget can be found here.

Regards,
Rosen
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Scheduler
Asked by
FireHolster
Top achievements
Rank 1
Answers by
FireHolster
Top achievements
Rank 1
Rosen
Telerik team
Share this question
or