I
watched a demo on using Kendo UI for PDF export at http://www.telerik.com/campaigns/kendo-ui/devchat-jul18
The demo
showed very good rendering of the page contents and then of a grid (using the
toolbar item). Alas, they did not show a
combined export where a page contains many elements including a grid.
I am aware of the pageTemplate, but we need to export the page header, text, selections of drop lists, etc. along all rows in the grid. We do this now with another tool that has very good fidelity but poor performance, especially on Azure where we were required to create a separate service for it (see attached).
We also use Telerik Reporting, so I know you have a great PDF engine. My question is, is there a solution to rendering the page HTML and all of the grid?
Best,
Scott
Looking for an example on how to modify the submit to
-POST to a REST service
-Not redirect the page
weak attempt..
//add to existing dom
ui.content.find('#add').append('<form id="addFrm" method="POST" onsubmit="svc.addResource();return false;"></form>'.format(_host.service));
page.addForm = $("#addFrm").kendoForm({
formData: {
id: 0,
modifiedBy: _user.email,
projectName: page.project.name,
role: '',
resourceType: '',
upn: '',
userDisplayName: ''
},
items: [{ editor: 'DropDownList', field: 'role', label: 'Project Role',
validation: { required: true, message: "must specific resource role" },
hint: "Hint: Solution Architect, Project Manager, Technical Lead, etc..",
editorOptions: { optionLabel: 'select project role...',dataSource: page.roles, dataTextField: 'role', dataValueField: 'role'} },
{ editor: 'DropDownList', field: 'resourceType', label: 'Resource Type',
validation: { required: true, message: "must specific type resource of resource" },
hint: "Hint: Vendors existing supplier, Contractors are independently hired, Any if TBD..",
editorOptions: {
optionLabel: 'select type of resource...',
dataSource: [{ text: 'Any' }, { text: 'Employee' }, { text: 'Vendor' }, { text: 'Contractor' }],
dataTextField: 'text',
dataValueField: 'text'
}
}
]
});

Hi,
I'm trying to display a year scale data, however categoryAxis with type "area" are not showing well and with type "line" won't showing anything.
Is it possible to make navigator looks like a miniature of the StockChart above?
Thanks!
Bob
Hello,
we ran into the issue when grid automatically convert datetime to local one, but in popup for explme we have a form with standard DateTime picker which does not do that, as a result of it we have diff dates in grid & in the popup when we edit the grid row.
are there any solution we can use to make it consistent? The preferable will be DateTime picker behavior when date is displayed as it is
Thx Alex
2020.2.617 version : bed dropdown!
https://dojo.telerik.com/@kjvjung/iQeDUjov
2020.1.114 version : good dropdown!
https://dojo.telerik.com/@kjvjung/exALONIb
How do I print it like the 2020.1.114 version?

I have this simple tabStrip
var tabStrip = $("#tabstrip").kendoTabStrip({ dataSource: [ { text: 'Tab1', url: '' }, { text: 'Tab2', url: '' }, { text: 'Tab3', url: '' }, { text: 'Tab4', url: '' } ], dataTextField: 'text', dataUrlField: 'url'}).data("kendoTabStrip");
Let's do two transformations on it
// Move Tab4 before Tab1tabStrip.insertBefore(tabStrip.tabGroup.children().last(), tabStrip.tabGroup.children().first());// Remove Tab3tabStrip.remove("li:last");
If I look at the dataSource of my tabStrip, I don't see the above transformations.
// Expected: [{"text":"Tab4","url":""},{"text":"Tab1","url":""},{"text":"Tab2","url":""}]// Result: [{"text":"Tab1","url":""},{"text":"Tab2","url":""},{"text":"Tab3","url":""},{"text":"Tab4","url":""}] kendo.stringify(tabStrip.dataSource.data());
How can I keep the dataSource in sync with what is actually rendered?
Here is a dojo snippet reproducing my issue.
Regards


Hi,
Can anyone help me out here for my situation, how can i add logo and disclaimer on the every page bottom while doing print of kendo grid result set.
Thanks in advance!
