I have a Kendo UI spreadsheet put in a aspx page. We do a Copy paste data from Excel sheet into Kendo Spreadsheet and validate/save content into database on a button click. Problem is, the copy pasted content in spreadsheet gets cleared once when page does a postback. How do I retain the content on postback?
Hi, I've added some custom icons as specified in your docs. I have added this icon .k-i-arrow-n.
However, some content inside my window also has that class (Kendo Dropdowns).
I have added a function to this class using the demo in your docs - window.wrapper.find(".k-i-arrow-n").click(function (e) { - but this function runs when I click the dropdown buttons as well.
Is there a way to resolve this please?

Hi,
I'm trying to follow this example, http://dojo.telerik.com/awEvi/2 to export html content to pdf. The original example works but when I modified the div to something like this to contain overflow properties,
<div class="demo-section k-content export-app wide hidden-on-narrow"> <div id="Test" style="width:100vw;height:20vw;overflow-y:auto;overflow-x:auto"> <div class="demo-section content-wrapper wide"> <div class="demo-section charts-wrapper wide"> <div id="users"></div> <div id="applications"></div> <div id="referrals"></div> </div> <div id="grid"></div> <div id="myDiv" style="height:100vw;width:5vw;background:red"></div> </div> </div> </div>
and setting the selector to Test :
$(".export-pdf").click(function() { // Convert the DOM element to a drawing using kendo.drawing.drawDOM kendo.drawing.drawDOM($("#Test")) .then(function(group) { // Render the result as a PDF file return kendo.drawing.exportPDF(group, { paperSize: "auto", margin: { left: "1cm", top: "1cm", right: "1cm", bottom: "1cm" } }); }) .done(function(data) { // Save the PDF file kendo.saveAs({ dataURI: data, fileName: "HR-Dashboard.pdf", proxyURL: "//demos.telerik.com/kendo-ui/service/export" }); }); });
the content becomes clipped as shown in the attached image.
Is there any way in which I could export the content within the div without having it clipped?
Best Regards,
CH



Hi,
I have a issue when to change the cell background dynamic, please refer to attach screenshot, below is the detail.
1, The PartNo, Spec, CmdtyCode are editable field, and they are colored as orange, and there is no color for other un-editable fields.
2, What I want is if the PartNo is blank, then set the CmdtyCode, Spec as editable and orange. If PartNo is not blank, then set the CmdtyCode, Spec as un-editable and not set color.
Now I can changed cell background and edit status normal. But if I lock the CmdtyCode field and other fields, I cannot get the correct index of locked editable field, is there any one can help me?

I have an application that includes a Grid with a DataSource that has a method attached to the RequestEnd event (code below). This works perfectly with Chrome, Firefox, and Edge. However, the RequestEnd event is never raised when IE 11 is used. Why is this and how can it be resolved?
@(Html.Kendo().Grid<MVCTimesheetApplication.Models.Timesheet>() .Name("timesheetGrid") .TableHtmlAttributes(new { style = "table-layout: fixed; " }) .Columns(columns => { // columns set up here... }) .Navigatable() .Editable(editable => { editable.DisplayDeleteConfirmation(false); editable.Mode(GridEditMode.InCell); }) .DataSource(dataSource => dataSource .Ajax() .Aggregates(aggregates => { //aggregates configured here... }) .Batch(true) .ServerOperation(false) .Events(events => events.Error("timesheetGrid_error_handler")) .Events(events => events.Change("timesheetGrid_change")) .Events(events => events.RequestEnd("timesheetGrid_requestEnd")) .Model(model => model.Id(t => t.rowId)) .Create(create => create.Action("Index_Create", "Home").Data("getCreateParams")) .Destroy(destroy => destroy.Action("Index_Delete", "Home").Data("getUpdateParams")) .Read(read => read.Action("Index_Read", "Home").Data("getReadParams")) .Update(update => update.Action("Index_Update", "Home").Data("getUpdateParams") ) ) .Events(events => events.DataBound("timesheetGrid_databound")) )
Thanks
I have been looking at the example for creating a menu from a JSON object and haven't found a list of supported properties.
http://docs.telerik.com/KENDO-UI/web/menu/overview#initialize-the-menu-using-json-data-object
They list several in the example, but is that a complete list? On the URL for example is there a way of having it open in a new window (target="_blank") vs. a redirect?
I would also like to be able to assign a javascript function to a click even, and have seen on click used in different examples, but is it supported for JSON.
Overall I have found a lot of examples and information of item manipulation, but very little on getting it to do what you want when you click it. I don't really want to have a nightmare of a switch statement in the on select event.
Thanks
Randy