There's a "feature" of the chart where the horizontal gridlines cross the Y axis and lead to the labels. I'd like them to terminate at the .
It looks like the attached now and the circled bit is the area (on each line) like to remove/terminate at the .
Any ideas how to do this?
Hi!
Please have a look at this demo: notice that rows 5 and 6 have custom format, where I want to add currencies (exotic ones). However, I discover that "S" and "H" seem to be custom format specifiers.
Can you provide a list of this special specifiers to know what special characters to escape?
Thanks!
I have a kendo grid and few actions buttons top of the kendo grid. When I resized the column widths and then mouse over on action button, the grid loses it adjusted widths.
Note : It happens on all the browsers.

How to change the name of the excel toolbar for all grids?

Hey,
We're trying to implement a clickable calendar view. The idea is that a user can see a month as a grid with each grid element representing a day. And each day can contain a record (or several) of their work that day ; i.e. that they worked from 08-16 that day . We would like that when the user clicks on a day, it would open a list of their records for that day (right below the day they clicked, so that the calendar would "split in two" in order for the list to be placed just below the day.
I attached a picture for reference. Is this something that would be possible the ListView component? I can imagine the calendar wouldn't be much of an issue to make, but I'm more uncertain if it's possible to show the list (when clicking a day) in the manner described.

onSave1: function (e) { $(event.srcElement) .addClass("k-state-disabled") .bind("click", disable = function (e) { e.preventDefault(); return false; }) this.dataSource.one("requestEnd", function () { $("[data-role=window] .k-grid-update").off("click", disable).removeClass("k-state-disabled"); })}onSave2: function (e) { $(event.srcElement).removeClass(".k-grid-update").addClass("k-state-disabled").addClass("disabledMarker"); this.dataSource.one("requestEnd", function () { $("[data-role=window] .disabledMarker").addClass(".k-grid-update").removeClass("k-state-disabled").removeClass("disabledMarker"); })}
I have editable grid and wants to update (using Rest API) edited value in two cases 1) Call update function in specific time interval 2) Call update function when cell focus out.
I have separate JavaScript function to update remote data.
How to achieve this?

Hi there, sorry to bother. The demo for the Editor featuring All Tools is missing two tools: insertHtml, and pdf
https://demos.telerik.com/kendo-ui/editor/all-tools
Also, minor nitpick, the order of the tools in that demo are a little wacky in my opinion. They are not the same order as in the API documentation which are categorized and ordered with a bit more thought.
https://docs.telerik.com/kendo-ui/api/javascript/ui/editor#configuration-tools
Cheers.
(I also have a pull request in to add the 'tableWizard' tool to the API documentation: https://github.com/telerik/kendo-ui-core/pull/3711)

Hi,
I'm trying to add some custom functionality to the awesome tabstrip component.
More exactly, when the user rightclicks a tab button, the tabstrip should be divided by a splitter in 2 sides (left and right)
When the user rightclicks again a tab button, the 2 sides should merge back under a single tabstrip.
This is what I have so far:
http://dojo.telerik.com/ERuLAb/2
This seems to work fine in one scenario:
If I right click Tab5, then click Tab6, Tab7, Tab8 everything is perfect.
But if I right click Tab5, then click Tab1, the right side looses its active tab content.
So it seems that the left tabstrip is somehow referencing the right tabstrip children unless those children were already activated. .
Any ideas to make me understand what's going on ?