Hi I am working with Kendo scheduler with AngularJS. Only month view is activated. Sometime I am facing a problem which one I can not reproduce always. Upon double clicking on any date I am going to date edit page(diff html same controller). I am editing some thing there and after saving, coming back to scheduler. From the edit page, I can back to scheduler without editing anything. When I just coming back to scheduler without editing/saving anything sometime I found that date selection is not correct. For example, If I click 5 Jan, 4 Jan is being selected, If I click 28 FEB then 27 Feb is being selected. For the first date of each week (First cell of each row) is being selected correctly. Any Idea?
Here is my scheduler option
$scope.schedulerOptions = { date: stDt , startTime: stDt, min: $scope.minDate, max: $scope.maxDate, height: 750, autobind: true, views: [ { type: "month" } ], timezone: "Etc/UTC", dataSource: $scope.tmpltDS, editable: false, selectable: true, change: scheduler_change, dataBound: scheduler_dataBound };Hi,
I tried to use Kendo-ui-react-jquery-diagram component, but i found an issue when requiring kendo.dataviz.diagram :
var _kendoDatavizDiagram = require('kendo/js/kendo.dataviz.diagram.js') ==> returns empty object.
How can i fix this problem ?
Thanks

Hello,
I wanted to update my TreeView control which uses a HierarchicalDataSource after I updated the array it uses.
You can see the fiddle here: https://jsfiddle.net/ZoolWay/gev9zj4j/
How can I update/refresh my TreeView after adding items? Changing a text works this way...
// how the datasource is configured:var myData = ... // already contains two items, one with subitemsvar myDataSource = new kendo.data.HierarchicalDataSource({ data: myData });// add item to the array:myData.push({ 'id': 3, 'text': 'Item 3'}); // read the updated arraymyDataSource.read();Hi
I try to read data from my angular service with this code (see below) but when i try to do a read() after init my service never call, what I'm wrong? I need to do that to reduce amount of data and re read when change month on scheduler using dataBound event
transport: { read: function (e) { return modelService.getData({ startDate: vm.startDate, endDate: vm.endDate, userIds: [] }).success(function (result) { e.success(result.data); }); } }, schema: { type: 'json', data: 'result.times' }
Hi,
I'm having some issues with some kendo controls, mostly with the grid and the autocomplete.
The grid is being created with KendoUI and the Autocomplete with ASP.net MVC editor templates and both are a bit lower than expected.
If i search something on the autocomplete or load some data into the grid it makes the call to the webservices and after the data is return it still
a delay (+-6 seconds) before the content is painted on the control.
I have trying to query the same api endpoints using a jquery autocomple and its way faster.
Also the page in general has +20 kendo controls and it takes quite long to load.
So my question is, is there any way that i can measure and optimize the performance of the telerik controls?
Thanks in Advance

HI --
We have existing code creating a tab strip with a series of tabs like this
@(Html.Kendo().TabStrip().Name("tabStrip_#=MeterID#")
.SelectedIndex(0)
.Events(events => events.Show("loadDetails(#:EnrollmentID#, #:MeterID#, #:IsCrossSell#)"))
.Animation(animation => animation.Open(open => open.Fade(FadeDirection.In)))
.Items(items =>
{
items.Add().Text("Documents").Content(
"<div id='divDocumentDownload_#=MeterID#'></div>" +
);
items.Add().Text("Other Fields").Content(
"<div id='divOtherFields_#=MeterID#'></div>"
);
items.Add().Text("Error Report").Content(
"<div id='divErrorReport_#=MeterID#' style='padding-top: 5px; padding-left: 5px; border:solid; border-width: 1px; margin-top: 10px; background-color: \\#F0F0F0;'>" +
"</div>"
);
items.Add().Text("Bill Images").Content(
"<div id='divBillLinks_#=MeterID#'></div>" +
);
items.Add().Text("Photo ID").Content(
"<div id='divPhotoIdWrapper_#=MeterID#'>" +
);
}).ToClientTemplate())
Is it possible to create the tabs ("items") separately and then add them in the code? Something like this
.Items(items =>
{item.Add(itemA).Add(itemB)}
The reason I'm asking is that the items themselves are fairly complicated (I have simplified the code above) and it would be much easier to modify and debug code if it wasn't one large chunk.
Thanks
Rich
