Hi according to this doco, the grid should be copyable (as per allowCopy field) when "set to true and selection of the Grid is enabled"
http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#configuration-allowCopy
But in your own Dojo, meant to illustrate the feature, it doesn't work (try copying a cell and check your clipboard):
http://dojo.telerik.com/acedo
I can get it to work, however, if I set the selectable property to just 'row', but 'multiple,row' stops it working.
I think there's a bunch of combination that don't work and some that do.
Do you acknowledge this as a bug, or does the documentation need to be clearer.
I have a TreeList that I am able to load with specified branches opened and rows selected using local data. However, if I access the same data from a remote source, the TreeList populates correctly but none of the specified branches and rows perform as they should. I have illustrated this problem at https://dojo.telerik.com/@rswetnam/AtILeDOT.
I believe it may have to do with the fact that the remote data is generating a list while the local data is generating an array - but am unable to figure out how to resolve this. Any help would be greatly appreciated.
nb - this thread follows up on thread https://www.telerik.com/forums/open-specific-treelist-node-upon-page-load---one-level-deep-only which was successfully resolved.
I would like to be have a particular TreeList node open upon page load when the id of the row/node that I want opened was passed in as a parameter and want only first child row opened. I have cloned Expand Selected Nodes Example" in the documentation and started this process at https://dojo.telerik.com/@rswetnam/igOwIcUk/8.
Any help in figuring out how to complete this so that I am able to pass in the parameter (in this case 2 for condiments) instead of clicking on the node I want to expand would be greatly appreciated.
<div id="grid"></div><script> $(function() { $("#grid").kendoGrid({ dataSource: { serverFiltering: true, serverPaging: true, serverSorting: true, type: "odata", transport: { read: { url: "/api/LegalEntity", dataType: "json" }, parameterMap: function(options, type) { var paramMap = kendo.data.transports.odata.parameterMap(options); delete paramMap.$inlinecount; // <-- remove inlinecount parameter. delete paramMap.$format; // <-- remove format parameter. return paramMap; } }, schema: { model: { fields: { Name: { type: "string" } } }, data: function(data) { return data; // <-- The result is just the data, it doesn't need to be unpacked. }, total: function(data) { return data.length; // <-- The total items count is the data length, there is no .Count to unpack. } }, pageSize: 10 }, height: 430, filterable: true, sortable: true, pageable: true, columns: [{ field: "Name", filterable: true }] }); });</script>Hi,
i'm having this issue, shown in the image category_render_error.png.
the all day event is being rendered according to category(as shown in different colours). I was expecting the green events to be rendered first followed by the turquoise event. But it doesn't work like this in this case.
How to choose which category of all day event to be rendered first? i want to show all the green ones followed by turquoise.
Also, referring to category_render_error2.png , "C on leave" and "D on leave" event should use up the whole row, but the "Seminar" and "Z last day" is overlapping the green colour events.
can i know how to change the font colour and background colour of each of the category event?
thank you.
It seems that your TextBox control/widget only has the change event handler, so I would like to know how to (natively) extend the TextBox widget adding identical functionality for eg. keyup, keydown etc.
The pattern I'm asking about is this:
kendo.ui.TextBox.extend({ ?? })
So that I can use the event handler in both initialization and after:
$("#myTextBox").kendoTextBox({
label: "Name",
value: "Hello World!",
change: function() { alert("Changed!"); },
keyup: function() { alert("KeyUp!"); },
});
- AND -
$("#myTextBox").data("kendoTextBox").bind("keyup", function(e) { alert("KeyUp!"); });
I know that I could simply do something like below, but I need to be able to do it on initialization - and I don't think it is as clean as extending the generic way.
$("#myTextBox").bind("keyup", function(e) { alert("KeyUp!"); })
Hi team,
I am new to kendo grid.We are using Kendo jquery for our application.We face a problem in paging of the Grid.
Normal paging design is in attachment file name "1".But at some time grid paging changed to Attachment "2"(it is the some grid in file "1" after successful insert of record).When we press f12 or if we move the window.it set back to older paging design.This is happening in different scenario all pages in my application.Can any one help on this please.
If you see file name "1.png",Paging is normal but same grid after insert paging,will look like in file name "2.png".If we move the browser screen or press f12.i will back to normal paging design.
We tried to resize the window but even after resizing issue remain same.Please help us on this
I am using Kendo grid jquery option pdf export and I am noticing that it does not apply template when the paperSize is set to "auto", however when I change it to "A4" it does apply.
Can anyone guide me what is the problem with "auto" ? I have a wide grid that cuts off when I set "A4" or "A3" with the landscape mode.

I'm trying to customize the shape hover template and add edit and delete buttons to allow users to click like the screenshot, and these buttons must display only when the mouse hovers on the shape.
I also need to capture user's click events from these buttons, because I need to open a custom window for edit and popup a confirm dialog.
Is there a way I can do this?

Hi,
I've just updated to Kendo UI v2017.1.118, and I've noticed (what I think is) a bug with the icons.
I dont know how far it goes but here is a screenshot of my menu and dropdowns. As you'll see the dropdown icons are both the up and down arrows together.
Please advise.
Thanks,
Grant
