Skip to content Skip to sidebar Skip to footer

Javascript Local Database Binding Of The Kendo UI Scheduler

I'm looking for a way to connect my open source Kendo UI Scheduler to a local database using javascript. I've already started but got stuck because I can't find any helpful docume

Solution 1:

schema: {
            model: {
                id: "meetingID",
                fields: {
                    meetingID: { type: "number" },
                    title: { defaultValue: "No title", validation: { required: true } },
                    start: { type: "date" },
                    end: { type: "date" },
                    roomId: { nullable: true },
                    attendee: { defaultValue: 1 },
                    isAllDay: { type: "boolean" }
                }
            }
        }

and look in the exemples of : http://demos.telerik.com/kendo-ui/web/scheduler/restriction.html


Solution 2:


Post a Comment for "Javascript Local Database Binding Of The Kendo UI Scheduler"