Hi,
Is the kendo diagram available with react and angularJs2 ?
Hi,
I have noticed this a few time now when using the Update Wizard to upgrade my version of KendoUI in various projects.
The wizard completes reporting no error but when I have a look in my _layout.vbhtml file not all Kendo references are updated... e.g.
<link href="@Url.Content("~/Content/kendo/2018.2.620/kendo.common.min.css")" rel="stylesheet" type="text/css" /><link href="@Url.Content("~/Content/kendo/2018.3.1017/kendo.common-bootstrap.min.css")" rel="stylesheet" type="text/css" /><link href="@Url.Content("~/Content/kendo/2018.3.1017/kendo.bootstrap.min.css")" rel="stylesheet" type="text/css" />As you can see.... the first line was not update and I had to manually change it.
Did the wizard miss this or did it ignore it for some reason?
Thanks
Hi,
I have 2 issues with grid and LoadingBar I think both of them are related.
1. I'm using grid to display data and have ability to trigger update manually, and if grid have scroll, then i click Refresh button.
Progress icon shown and data refresh takes some time i can scroll down and now grid is not locked :( Loading bar not visible any more.
2. If I dynamicly add grid on page then Progress bar not shown, but if i click refresh it is visible, it looks like that during first show grid is not yet fully initialized and progress cannot be shown.
I have attached sample how to reproduce this.
1. Before Refresh Click disconnect internet, because refresh process needs much time.
or before refresh you need to replace following value
to
but i do not have success with it, so just disconnect or disable network :)
2. Try to scroll down, now grid not disabled.
The problem because loading shown for
$("#grid .k-grid-content")kendo.ui.progress($('#grid .k-grid-content'), true);
kendo.ui.progress($('#grid'), true);- yes it is disabled columns too, but during refresh user should not be able to do anything with columns.

In grid, I need to dynamically add a value to a column with a new row using a pop-up box. when I get dataSource I tried this method,
var firstItem = $('#GridName').data().kendoGrid.dataSource.data()[0];firstItem.set('name','The updated Name');
but it was useless.
In fact, it gets the value given to it, but it doesn't show up,(I guess it's the edit reason,but I don't know how to solve it)
What should I do to achieve it? Thank you very much. I look forward to your answer.
Hi All,
I have three questions for this requests.
1. How could I keep the MultiColumnComboBox from closing after an item is selected?
2. Could anyone provide an example of a MultiColumnComboBox with checkboxes (either the row is selected or checkbox is checked) based of
https://demos.telerik.com/kendo-ui/multicolumncombobox/index?
2. How could I display the number of items that are selected in the placeholder?
TIA,
Steve
i'm initializing a treeview control which has the hasChildren property set on the model as a function and a remote based datasource.
is there any way to force a re-evaluation of the hasChildren function on a given node without re-reading from the remote server?
I get the error attached in kendo.all.js and the error event doesn't even fire,what am i doing wrong?
var dataSource = new kendo.data.DataSource({ transport: { read: { url: "helper.php?action=data", dataType: "json" } }, schema: { data: "zzz" }});dataSource.bind("error", function(e) { alert('error');});dataSource.fetch(function() { alert('fetch complete');});the helper returns this json:
{"zzz":{"items":[{"type":"button","text":"Test"}]}}
I have tried with and without the schema set as per suggestions seen on the web - please help?
I'm pulling my hair out with the the 'slice' error on something that looks so simple, using the code below
var dataSource = new kendo.data.DataSource({ transport: { read: { url: "helper.php?action=data", dataType: "json" } }, schema: { data: "zzz" }});dataSource.bind("error", function(e) { alert('error');}); dataSource.fetch(function() { alert('fetch complete');});and my helper returns this json:
{"zzz":{"items":[{"type":"button","text":"Test"}]}}
I have tried with and without the schema set - please help?

Hi,
I am using KendoUI for javascript angular directive. I have a list of tree object like:
dc.DataSource=[{Name:"Item1",Children:[{Name:"Item1.1"},{Name:"Item1.2"}]},
{Name:"Item2",Children:[{Name:"Item2.1"},{Name:"Item2.2"}]}
];
What I want to achieve is show each object in datasource in a listview template, and inside the template, I want to use tree view to display the hierarchical data(and a checkbox for each item data). In below code, I just want to know how to set the datasource of the treeview since it is different for each item
<div kendo-list-view k-data-source="dc.DataSource">
<div k-template>
<div class="col-md-3">
<div kendo-tree-view="tree" k-data-source="{{dataItem}}">
<span k-template>
{{dataItem.Name}}
</span>
</div>
</div>
</div>
</div>
Thanks,
Ziff
