Let's say I have an array of Ids, and For each Id I would like to create a Tree List and bind the data with the given ID. I was wondering what are the ways to achieve it. Especially the columns are identical but how to provide the configuration settings for each dynamically created Tree Lists.
{
"id":"1",
"data": "hello",
"status": "inProgress"
},
{
"id":"1",
"data": "hello",
"status": "inProgress"
},
{
"id":"1",
"data": "hello",
"status": "inProgress"
},
{
"id":"2",
"data": "hello",
"status": "inProgress"
},
{
"id":"2",
"data": "hello",
"status": "inProgress"
}
Here all the Id 1 data will be part of one tree List and the ones with Id 2, will be part of another List.
Thanks,
Sibin S
Hope you can assist to solve this issue with PDF export feature,
We are doing a js bundle with grunt that includes kendo.core.min, kendo.pdf.min.js and more js files, when I call the saveAsPdf() method DejaVu Sans is missing (404) and is trying to looking in a missing folder with a dynamic folder (same as js bundle), it is possible to force or define a different folder or path???
Thanks in advance!

Hello All,
Below is the response I got from Telerik regarding the topic on export to excel/PDF which has lot of data. This is currently unacceptable to customers and we need any possible help to fix this issue.If any of you have faced below issue, can you please advice what was done to avoid this issue?
Regards,
Anil
From: Telerik Admin
Date: 2/11/2016 9:38:21 AM
CC:
Hello,
There
is a certain limit of items that can be exported. It could vary depending on
the browser, it's version, the operating system, so there is no specific number
to be stated. The reason is that modern browsers do not provide support for
streams. This means that we have to keep all data in memory until the file is
generated on the client side. It's a limitation that we won't be able to
overcome in the foreseeable feature. If exporting all of the items is required,
we do not recommend using the built in PDF and Excel export functionality.
Regards,
Dimiter Madjarov
Telerik
Date: 2/11/2016 4:36:21 AM
Hello
Team,
Export with large number of data results in a failure, both Excel and PDF.
refer this link http://dojo.telerik.com/ajOXaj
Thanks
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

