The KendoUI grid code in my application is like this:
<kendo-grid id="myGrid" options="mainGridOptions"><br> <kendoGridToolbarTemplate><br> <button kendoGridExcelCommand>Export to Excel</button><br> <kendo-grid-excel fileName="GridData.xlsx"><br> </kendo-grid-excel><br> </kendoGridToolbarTemplate><br> <div k-detail-template><br> <br> <kendo-tabstrip> Some DIVs and fields here </kendo-tabstrip><br> </div><br> <kendo-grid-excel fileName="Products.xlsx"></kendo-grid-excel><br> </kendo-grid>
The data source to this grid is attached on run-time. I am trying to make the Export to Excel button workable but it is not working. What am I doing wrong?
01.<div id="example" class="k-content">02. <div id="grid"></div>03. 04. <script>05. var test = [06. {07. "ID":1,08. "ISIN (SML)":"test"09. }10. ]11. 12. 13. $(document).ready(function() {14. $("#grid").kendoGrid({15. dataSource: {16. data: test17. }18. });19. });20. </script>21.</div>


I would like to position both the scroll buttons for the tabstrip to the right (see screenshot) and let them always be visible. Any thoughts on whether this is possible and how to get that working?
Thanks,
Ron

Hello
After going through the Web Font Icons documentation I wanted to add an icon with no text to a mobile button:
CSS:
.km-search:after, .km-search:before { content: "\e0e9"; font-size: 32px;}(considering proportions of 16 -> 32 -> 64, etc. as mentioned in documentation)
HTML:
<div id="searchmapheader" data-role="header"> <a id="foo" data-role="button" data-icon="search"></a></div>
The icon looks like the attachment (see screenshot1.png) : The icon is out of the defined button
On setting a width like 80px for the <a> tag looks like screenshot2.png : The icon is not centered at all
So I tried to center any text inside the <a> tag: text-align: center; -> will be ignored, so it looks still like screenshot2.png
Now I wonder how I can center the k-icon inside the mobile button?
Regards
I seem to be having an issue with the JQuery Editor and customizing the tools. If I just call $("#element").kendoEditor(); everything loads with the standard toolbar. However when I try to set it up with tools options like so: $("#element").kendoEditor({tools:["bold", "italic", "underline","createLink", "unlink"]}); I get the following error in the image. Any ideas?

Is there a way to attach to any datasource event error? Something like jquery.on method that attaches also to events for elements that are going to be added in the future.
So what I would like is to display to the user a popup message when an error appears, but I would not like to add to every datasource an event for errors, because I would like to avoid forgetting to add it to a datasource.