Hi,
I have a combbox where the choices are driven by a remote datasource as follows:
main.php
-----------------------
<script>
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: "select_data3.php?type=123",
dataType: "json"
}
}
});
<select id="event_id" style="width: 450px;">
</select>
select_data3.php
-----------------
<?php header('Content-Type: application/json');?>
[{"Text":"AUT","Value":"Austria"}, {"Text":"BEL","Value":"Belgium"}, {"Text":"BGR","Value":"Bulgaria"}]
It's unable to load remote data into combobox
And i had tried to
1. copy http://dojo.telerik.com/IzAWU to my localhost
2. download //demos.telerik.com/kendo-ui/service/Products to local folder
3. It's good for execute step1 directly
4. Show nothing, when i modify params to "//localhost/test/Products" and "json"

When using the filemanager's upload button to upload the files, everything works correctly. The files uploaded show on the list and I can see when the file upload is complete.
But if I drag and drop the files into a folder, the files are also uploaded, but I don't see the list of files, if these are large files, I can not tell when the transfer is complete.
How can I make the filemanager display the show the list of files uploaded when a drag and drop happens?

Following the starting instructions (Running the API and Sample Apps) installed the npm packages.
In the course at the 2:57 mark, it shows 2 vulnerabilities, 1 medium and 1 high. When I ran the install it showed 7 vulnerabilities (1 low, 2 moderate, 4 high). Ran the audit (audit.txt in attached .zip file) and then ran npm audit fix --force. (see npmauditfix.png in attached .zip file)
When I tried to start the app, got an error. (see npmstarterr.png in attached .zip file)
I got around things by deleting the folder and reinstalling so not a high level issue.
I'm not familiar with node and all the components so somewhat concerned about the vulnerabilities.
Should the course files be updated?

Hi,
I have a task with long name and after exporting it to pdf, name is shown partially.
I tried to change width of the column before exporting and reset it after it:
let columns = $("#gantt").getKendoGantt().options.columns;
columns[3].width = 1500;
$("#gantt").getKendoGantt().setOptions({columns: columns});
outerThis.gantt.saveAsPDF();
but it broke my gantt chart, because I have other methods in databound and databinding which resets after setOptions.
I also tried to change height of my rows, but it broke dependencies like shown in Screenshot(120).
How can I solve this problem? Is there any way to change only the width of the column without changing other things?
Thanks

Hi,
I have a Gantt with a big data (3 years) and after exporting to pdf it is cropped. Is there any limitation and how can I solve this problem??
Thanks
We have two grids in our site that have a custom command button declared similarly to this:
columns.Command(cmd => cmd.Custom("Unaudit").Click("unaudit")).Width(60);unaudit is a javascript function. Works ok but inside unaudit we have to jump through hoops to get the data we want, the id of the record in that grid row.
var id = this.dataItem($(e.currentTarget).closest("tr")).ID;
Is there a way to access the data object and pass just a field to the javascript function?
example (not working)
columns.Command(cmd => cmd.Custom("Unaudit").Click("unaudit(data.ID)")).Width(60);Help is appreciated. Thanks. Note that if i am required to use a client template column instead, i do know how to do that but was hoping i wouldn't have to do that.

Hello,
I'm running into a problem when trying to use the same dataSource in two different grids on my SPA page.
The following construction in used in the different grids:
{
field: "_company_id",
title: "Bedrijf",
editor: companyComboBox,
dataSource: dataSourceCompany,
dataTextField: "name",
dataValueField: "id"
}When I leave out the dataSource at one grid, both grids show up, but one grid only shows the _company_id value.
When I use the same code in both grids the second grid will not show, also no errors show up.
Please advice, I've added more info below, more info added.

Dear Sir or Madam,
FileManager: When I click the "New Folder" toolbar button, a new folder is created (called "New Folder"). I would like to know, if and how it is possible to localize the default name of new folders? Unfortunately, this is not mentioned in your documentation.
Is it possible to localize the default name of a new folder? (e.g. to its German translation "Neuer Ordner")
I look forward to your reply!
Yours sincerely,
Patrick
In the this documentation, you define a 'group' field that stores three fields - field, value and items. However, I am having trouble accessing this object in function notation.
let IsActive: kendo.ui.GridColumn = {
field: "IsActive",
title: "Active",
aggregates: ["group"],
template: `<span data-columnName="IsActive">#= IsActive #</span>`,
groupFooterTemplate: (data: any, group: any) => {
return group.items[0].Name
}
}
See that 'group' is not defined in this context. How can I reference this in function notation?