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

Hello,
How to use Component Type in datetime picker MVVM? i tried using data-component-type="modern" , but it didnt worked

Hi!
I have been scouring through the forums and documentation but the way a grid gets tooltip is very confusing to me. we need to have a separate tooltip control and traverse the grid and apply tooltip in it.
Is there a way such as:
01.columns: [ {02. field: "ParkingCardId",03. title: "Card Id",04. template: '<a href="@Url.Action("NewRequest", "Parking")?cardId=#=ParkingCardId#&cardTypeString=View">#=ParkingCardId#</a>'05. }, {06. field: "DateRequested",07. title: "Requested",08. template: '#= kendo.toString(kendo.parseDate(DateRequested), "dd-MMM-yy")#'09. }, {10. field: "Name",11. title: "Full Name"12. }, {13. field: "AirportPassNumber",14. title: "Pass No."15. }, {16. field: "DrivingLicenseNumber",17. title: "D.L No"18. }, {19. field: "VehicleNumber",20. title: "Car No."21. }, {22. field: "Status",23. title: "Status"24. tooltip: "<Name of a property on the model>"25. }, {26. field: "PassExpiryDate",27. title: "Expiry Date",28. template: '# if (PassExpiryDate !== null) {# #=kendo.toString(kendo.parseDate(PassExpiryDate), "dd-MMM-yy")# #} else { # <span></span> # } #'29. }, {30. field: "StatusId",31. title: "Action",32. template:33. "#if (IsExpired && StatusId === 5) {# <a href='@Url.Action("NewRequest", "Parking")?cardId=#=ParkingCardId#&cardTypeString=Renew Card'>Renew</a> #} else {# #}#" +34. "#if ((IsExpired && StatusId === 5) && StatusId === 0) {# | #} else {# #}# " +35. "#if (StatusId === 0) {# <button type='button' class='k-button k-danger' onclick='openCancelDialog(#=ParkingCardId#)'>Cancel</button> #} else {# #}#"36. },{37. field: "Invoice",38. title: "Invoice",39. template: '#if (Status == "Print & Pay") {# <a onclick=PrepareInvoice("#=ParkingCardId#")>Print</a> #} else {# #}#'40. }41.]
Check line # 24.

