
Let's say we have this tree: A -> B -> [C,D] where A = root node, B = childnode of A, nodes C and D are children of B).
When I check node C or D without filters applied, nodes A and B get the indeterminate state correctly.
However, when I apply a filter (i.e. text contains C), node D get's hidden. When I now check node C, both nodes A and B also get checked, while they should be indeterminate since node D is not checked.
Using Kendo UI version 2017.2.621, OS Windows 10, Chrome 59.0.3071.115 (64-bit), jQuery version 1.12.4
Attached files:

I've managed to recreate this bug in the Dojo.
http://dojo.telerik.com/EPOWex
The problem is only occurring in Edge (Chrome and IE are working correctly).
After you select a value from the AutoComplete and set it to enable(false). Notice that in Edge you can still select the text in the widget. Simply then press the del-key and the value is removed...
Is it possible to override the value axis label content?
<kendo-chart-value-axis-item-labels format="n" [visual]="drawLabel"></kendo-chart-value-axis-item-labels>Format I believe uses the Intl service which in turn uses the LOCALE_ID - I'm changing culture dynamically so I cannot use this.
Visual takes a function which might have worked except you have no reference to the component so I can't use any injected services to format the text.
The tooltip has a template option so something like this works for me there, using a custom pipe:
<kendo-chart-tooltip> <ng-template kendoChartSeriesTooltipTemplate let-value="value"> {{ value | intlNumber }} </ng-template></kendo-chart-tooltip>Is there anything I'm missing that could achieve this for value axis labels?
Hello Telerik Team,
We have a requirement in which we need to track the upload progress even after page is refreshed or a new URL is opened on the same website. Please suggest a way to achieve this with KendoUI upload control.
Thanks


Hello,
I am trying to manipulate min max of an axis item but the axis values are not correct.
Here is an example of the scenario - plunker
It is interesting when the axis values are whole numbers for example from 1 to 10 and you enter 5 the axis units are 50 for 5 then 51 for 6 and so on.
Another way of achieving what I want, that I can think of, is using the narrowRange property of the axis and then filtering the data but the property is not working at all..
Thanks
Georgi Mitev

I am using kendo ui scheduler in dynamics 365 as an extensible control. The problem I am facing is when navigate to week view with around 200-250 events. It is taking 15-20 seconds which is not acceptable for client. Although I have tested the same scenario in simple .Net project and it is loading very fast. I am able to integrate all required functionalities except this. These below two lines are taking time to re-render scheduler in dynamics 365.
var scheduler = $("#scheduler").data("kendoScheduler");
scheduler.dataSource.read();//line#1
scheduler.view(scheduler.view().name);//line#2
I am using limited data regarding the selected date. So in reading and rendering it is taking 15-20 seconds for week view.
Regards,
Hassan (Software Engineer)