I would like the user to navigate to different page - if user clicks on a treemap cell ..
How to set the Redirection or Navigation to happen ?.
Using web app , aspx , vs 2015 , Kendo latest

This problem has been even on the demo page.
I opened the page and performed the simple script to display cell borders through developer console:
$('.k-grid-content tr td').css('border-left-width','1px')After this I can see column borders as you can see on the first screenshot.
Then I scale page with Ctrl and mouse wheel. The result you can see on the second screenshot. Note, that if I will scale the page back to normal size, column borders in the body will not get initial position, they will be shifted regarding to header column borders.
Is there a way to avoid this shifting on the scaling?
hi team,
I have a kendo grid with inline edit. When I click on edit, my update and cancel buttons come in 2 rows and not side by side. How can I get them side by side. Currently the column width for edit is 100px. Also my grid has a lot of columns so I need the horizontal scroll. How can I set the edit width to auto and stil have update and cancel buttons side by side?

Is it possible to disallow resources shifting columns in the "week" view of scheduler. I've tried grouping in the week view as well but it didn't grouped the reservations based on configurations. Also it added configurations name in the Y axis along with time on y-axis i.e per configuration with 24 hours time in y-axis.
The week view should have y-axis as 24 hour time and x-axis as 7 days range (which works fine but need vertical alignment for the same configuration reservations)
Green reservations should come in one column, and same should apply for red and yellow in attached file.
views: [
{
type: "day"
}, {
type: "week",
selected: true,
group: {
resources: ["Configurations"],
orientation: "vertical"
}
}, {
type: "agenda",
eventTemplate: $(reservationAgendaTemplate).html()
},
{
type: "timelineWeek",
columnWidth: 100,
majorTick: 1440,
group: {
resources: ["Configurations"],
orientation: "vertical"
}
}
],

Dear Telerik developers,
I need to use line spacing in Kendo Editor but I don't see this functionality.
Could you please show me how can I use this capability like Microsoft Word?.
Thanks in advanced.
Raúl.

I am missing Dialog forum. Maybe you should create it and then move this topic.
How can I add icon or even better define classes for icon in dialog actions?
$("#dialog").kendoDialog({ actions: [{ text: "OK", spriteCssClass: "fa fa-check", action: function(e){ }, }]});Hi,
Im using Spring to create a webapp and would like to implement serverSorting (as the first server option) in my kendoGrid.
The problem Im having is being able to read the "sort/group/filter/etc" data that is sent from the dataSource to by REST controller method.
This the URL being called by the browser:
http://localhost:8080/itd-boot-thymeleaf-demo/users?{%22sort%22:[{%22field%22:%22lastName%22,%22dir%22:%22asc%22}]}This is my dataSource read atribute:
read: { url: "/itd-boot-thymeleaf-demo/users", contentType: "application/json", dataType: "json"},Here is my controller method:
@RequestMapping(method=RequestMethod.GET, produces="application/json")@ResponseBodypublic String getUsers() { System.out.println("### Getting users JSON"); List<User> users = userService.getList(); return User.toJsonArray(users);}What parameters should I add to "getUsers()" to map the request data so my method can read it?
I've tried to find examples of the serverSorting being used with MVC but haven't had any luck.
Please advise.
Thanks,
Grant
Hi,
Im trying to create a PoC replica of some new functionality added to KendoDropDownList, adding a new Item from the noDataTemplate.
Im trying to replicate http://demos.telerik.com/kendo-ui/dropdownlist/addnewitem with a static DataSource, however once the new item is added to the dataSource its not being selected, http://dojo.telerik.com/emOWE.
Regards,
Grant
PS - This feels like a stupid question, like I've overlooked something simple. My apologies if this is the case.