We are running into a (I think) simple issue with Kendo UI Grid.
Situation is best explained using an image (see attached).
My grid has 4 columns: ID, External Code, Manufacturer,Type.
When I sort, everything works fine, no issues.
When we hide the "External Code"-column (the second column) the table reloads and all is well.
Now, when we sort on the NEW second column (Manufacturer) the following happens:
1. [Correct] The grid is sorted properly
2. [Correct] The Manufacturer table header gets the 'k-sorted' class, making it blue, showing an arrow
3. [Issue] The k-sorted class is added to the wrong <col> in the table body <colgroup> definition.
In this case it's adding k-sorted to the third column - which is the original position of the manufacturer column.
Is this a bug in kendo, or are we doing it wrong™?
Additional info
- We're using the latest kendo javascript library.
- We're hiding/showing columns using the $("#grid").data("kendoGrid").hideColumn("internalColumnName") API
Please advise,
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