or
$("#reminderTimepicker").kendoTimePicker({ animation: false, min: getTimelineStart(offsetMinutes), max: getTimelineEnd(offsetMinutes), interval: interval, change: function(e) { e.preventDefault(); var selectedTime = this.value(); $("#reminderSlider").slider("value", getSliderPointFromTime(selectedTime)); } });angular.module("KendoDemos", [ "kendo.directives" ]) .controller("MyCtrl", function($scope){ $scope.mainGridOptions = { dataSource: { type: "odata", transport: { update: function(options){ console.log("updated"); } } }, editable: "inline", columns: [{ field: "FirstName", title: "First Name", width: "120px" },{ field: "LastName", title: "Last Name", width: "120px" },{ field: "Country", width: "120px" },{ field: "City", width: "120px" },{ command: ["edit", "destroy"], title: " ", width: "250px" }] }; })