I'm using the server dropdown list in a kendo window that opens when the user does an action. I have the dropdownlist control open when the window opens by using
dropdownlist.open();but the keyboard controls (arrow keys) aren't working for it even if I put focus on it using
$('.dropdown').find('.k-textbox')[0].focus();Any idea how to do it? I see that this also doesn't work in your demo here http://dojo.telerik.com/OZixO.
Thanks!

Hi,
Is there a way to access the DatePicker widget (and description text) that is used for navigation in the kendoScheduler? I'd like to change a few of its options.
Thanks,
Grant
Hello everybody. After update to new version i found a bug in "select" event of DropDownList widget in KendoUI (2016.3.914).
I create this example to show you what's wrong: http://dojo.telerik.com/UJubi
In this version of KendoUI "select" event called multiple times (instead of one) when user choose item from list, see in developer tools console.
Hi,
Im using angularJS v1.2.25
I have my own table and templates, but I want to use Kendo UI grid's pager. I need mostly the UI and Angular variable binding to the page number and such.
I checked the documentation I could only find JQuery example, I was wondering if there is a Angular version of just the pager component of the Grid.
Thanks

Demo available here dojo http://dojo.telerik.com/@yerinle/iHEHe
When I re-order a column (e.g moving "Contact title" to be the first column), then if I click on "Contact title" to sort, "Contact Name" data now appears under "Contact title". So the grid content goes back to the initial state with the re-ordered columns out of sync.
Seems to be a side effect of using row template, which I need to use.
So is it possible to get this working properly with row template.
Thanks.
Hi,
I'm trying to change the datasource value on change api of the dropdownlist.
Anyone have suggestion?
Code:
$("#ddllanguage").kendoDropDownList({ ... change: DropdownChange });var dropdownlist = $("#ddllanguage").data("kendoDropDownList");function DropdownChange() { $("#technicalspecs").data("kendoListView").dataSource.read(); // RELOAD DATASOURCE ON KENDOLISTVIEW };var dataSourcetechnical = new kendo.data.DataSource({ transport: { read: { url: "/api/someurl", data: { languageid: dropdownlist.value() }, //HOW TO CHANGE THIS VALUE ON CHANGE EVENT dataType: "json" } } });
I noticed that the Release 3 of Kendo UI Professional was published last week. When will the corresponding update to the kendo-ui.d.ts be made available?
I would like to adapt some of the new features (Dialogs), but I'm using Typescript so I need to have the updated definitions.
Thanks
marc

Hallo,
how do you change the title of a navbar within a drawer in code?
<div id="mainMenu" data-role="drawer" data-swipe-to-open="false" data-model="views.index.viewModel" data-title=""> <header data-role="header"> <div data-role="navbar" id="mainNavBar"> <span data-role="view-title"></span> </div> </header> <ul id="mainMenuListView" class="item-list" data-role="listview" data-bind="source: menuItemDataSource" data-auto-bind="false" data-template="mainMenuItemTemplate" data-header-template="mainMenuHeaderTemplate"></ul> </div>
Hello,
I am using Drag and drop functionality in Kendo UI Drawing for my module.
all shapes drag and drops are working fine as per expectations, but when i am trying to draw lines and join them , ends of lines are mismatching which is not looking good. it creates visual difference that can be easily noticed. this is happening for same sized line matching or different sized too. is there any solution for this.
Please have a look at screenshot below for issue i am facing.
Thanks