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.


Telerik,
As per your article here - https://docs.telerik.com/kendo-ui/controls/scheduling/scheduler/how-to/scrolling/scroll-views-horizontally
If you do this, then enable selectable: true - it doesnt work correctly, essentially it only selects ever X group - hard to explain, please watch the video.
Is there a fix for this?
You can see the issue in the attached video (ZIPPED) and here is a modified dojo from yours with just selectable set.
https://dojo.telerik.com/@daniel_j/arUVUMAY
Thank You.

I'm having a similar issue as reported here: https://www.telerik.com/forums/drawdom-with-cloned-chart-fails#ko3KfThygUiX9Q22tdM4ZQ
I'm trying to export a chart to a pdf document that also includes some text and a grid. In my case the chart is a bubble chart. When I export I am only getting one bubble to display on the chart in the pdf even though the rest of the bubbles are displayed on the screen. If I add a setTimeout(function() {// code to finish exporting},5000); to my code I can get it to work but I don't like the idea of relying on setTimeout. I tried using the "render" event but that also only gave me one bubble in the final printout. When I tried the dataBound event it never fired. How do I fix this?
