Here's a jsfiddle that shows the behavior that I'm currently seeing: http://jsbin.com/joleriva/1/edit
Notice how you see 4 items in the "Foo: 1" group, and if you go to the second page you see one additional item that belongs to that group. If (on the first page) you minimize "Foo: 1" group you don't see anything but the group header and the paging controls.
Like I said, I really hope that I'm just missing some configuration options that will make this work in a more intuitive way.
By the way, I've looked into the Virtual Scrolling with groups, but that has problems of it's own when you minimize a group... http://trykendoui.telerik.com/ivum

The drawer widget builds form a list of items similar to menu items.
What would be the proper way to have subitems like nested ul>li>ul>li?
Hello guys.
Basically I'm trying to export my grid to PDF and this works just fine simply reading kendo documentation. But when I open this generated PDF, it looks just like a printscreen to me. What I wanna do is change it, use some kind of custom template (e.g html) or something and beautify this.
I'm only using this lines of code for properly working:
var grid = $("#grid").data("kendoGrid");
kendo.drawing.drawDOM($("#grid")).then(function (group) {
kendo.drawing.pdf.saveAs(group, "test.pdf");
});
Is there some way of doing this? (Changing this generated PDF layout)
Hello,
I want to show multiple events in one day. How to visualizes specific events in daily time basis instead of default yearly time basis? Any help is appreciated.
Thanks!
I am trying to export my openStreetMap to a PDF but the background (the map) doesn't show up. I see a bunch of errors in the console that are similar to:
Access to XMLHttpRequest at 'https://www.toolserver.org/tiles/bw-mapnik/4/4/6.png' from origin 'https://localhost:44342' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
I have no control over toolserver.org so I can't tell them to add Access-Control-Allow-Origin to their header. Is there a workaround? I'm open to using another map template that offers a black and white map if anyone knows of one that won't give me the cors error.
Hi,
I have large records around 13000 and I used grid with endless scrollbar for better performance.
But
if i want to select last row in grid. Scroll to last row number.
How do i accomplish that? I read blogs for virtual scrollbar but not getting for any endless scrollbar. Thanks in advance.
https://www.telerik.com/forums/vitual-scrolling-client-data-scroll-to-row-number

get idSelection() { var grid = $("#grid").data('kendoGrid'); var row = grid.select(); if (!row.is('.k-master-row')) { row = row.closest(".k-master-row"); } const selected = this.grid.dataItem(row); return selected ? selected.Id : undefined; }