Hello,
i want to consume an OData V4 Web Service and show the data in a Kendo UI Grid.
Ist there any example how to do this?
The OData response format is a little bit different from standard json response.
Thanks in advance
Ralf

Hello,
I am using the kendo treelist to display a filesystem with folders and documents as the folder contents. The filesystem currently is rather flat, meaning that there is only the top-folder level and the document-level below it, i.e. no subfolders. I would like to implement a context menu for interacting with the treelist contents however the context menu needs to display different options when selecting a folder vs. when selecting a document which should trigger different events on the web page. Is it possible to use one context menu which displays these differing options in general for the two layers of my treelist. If I could display these different options then implementing the rest of the logic should be simple through the (select) handler.See the attached Stackblitz as a reference:
>>> https://stackblitz.com/edit/angular-rla8zp
Ideally the option 'Lock Folder' should only be displayed when selecting a folder and the option 'Edit Document' likewise only when a document is selected
I have a one of legacy applications with AngularJS + KendoUI.
I have a grid when I have defined filter like that:
"filterTemplates": {
"commonInput": function (args) {
args.element.css("width", "90%").addClass("k-textbox").keyup(function (e) {
e.preventDefault();
if (e.target.value.length >= 3) {
setTimeout(function () {
$(e.target).delay(1000).trigger("change");
}, 500);
}
});
},
//. other filters like datetime, etc...,never mind in this example
}
and two columns:
{
"title": "Name",
"field": "UserName",
"width": "9%",
"encoded": true,
"filterable": {
"cell": {
"showOperators": false,
"operator": "contains",
"template": vm.gridPreInitConfig.filterTemplates.commonInput
}
}
},
{
"title": "Surname",
"field": "UserSurname",
"width": "9%",
"encoded": true,
"filterable": {
"cell": {
"showOperators": false,
"operator": "contains",
"template": vm.gridPreInitConfig.filterTemplates.commonInput
}
}
}
And now:
If I set a value in textbox filter in Name column the grid processing and is filtered perfectly, after a while.
But if I set a value in textbox filter in Surname column the grid processing and not filtered.
Please, help. Why the second column with the same filter doesn't work?
I tried also duplicate the filter in other name, but still doesn't work.

Kindly find the attachment, am not able to load the reservations on scheduler since am getting this error.
My array has image key which is not null.
Kindly help with these two issues.


How to get Start and End datetime of the view.?
For Example: In week view how to get Start(Sunday -- DateTime) and End Saturday--DateTime.
Thanks and Regards
Anto

Hello All,
<kendo-grid #grid [data]="data" [height]="height - 210" scrollable="virtual" [rowHeight]="36" [pageSize]="state.take"
[skip]="state.skip" [sort]="state.sort" [sortable]="{ allowUnsort: true, mode: 'multiple' }" [resizable]="true"
[reorderable]="true" (columnReorder)="onReorder($event)" (keydown)="onKeydown($event)"
[columnMenu]="{filter: true, sort: false}" (columnResize)="onResize($event)" (pageChange)="pageChange($event)"
(sortChange)="sortChange($event)" (columnVisibilityChange)="onVisibilityChange($event)" [filter]="filters"
filterable="menu" (filterChange)="filterChange($event)">
<keno-grid>
My requirement is to show column menu icon on one column and filter menu icon on other column, but both columns are showing column menu icon and filter menu going inside column menu pop up. How can I show filter icon on column header when column menu is set to true.
Best Regards,
Azher Ahmed

I see the JQuery version has the capabilities for controlling how content is pasted into the editor which is a very critical feature IMO.
https://docs.telerik.com/kendo-ui/controls/editors/editor/pasting
I was wondering where this was on the road map for the Angular implementation? This is really the only thing holding me back from using it versus other options available.
Thanks.

Hello, I've been trying to implement the excel export function on a mobile app, however the .xlsx file does not generate; I don't get any errors when the procedure is done.
I'm just wondering if this is not supported for mobile devices or if there is an extra step for this to work?

Hi,
Is there any event to trigger on change of view. since i have to create appointment horizontally in day view and similar manner In timeline view it has to be in vertical view.
Thanks and Regards
Anto
