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!

Hello,
I am looking for help regarding preventing a kendo spreadsheet from executing html that is pasted into a cell. I have tried $(document).on('paste', function () {}) and the kendo paste function prevent defaults, but neither or these worked. Any suggestions?
Example:
Dojo: https://dojo.telerik.com/AjomeMOH/5
Paste value : <img src=x onerror=alert(123)>
Thanks
