I've got an datasource that returns object with a parent field. When I try to show a column with a value from this field nothing is returned.
As it seems, the parent value is overwritten by kendo grid
$('#kendoGrid').kendoGrid({ dataSource: [{parent: "value" }], height: 550, columns: [{ field: "parent", title: "Parent Field"}] });
shows the following value in the grid:
function (){return o}
How can I fix this?

Hi,
I am have kendo dropdown in a page, following is html generated by it
<div class="k-list-container k-popup k-group k-reset" id="ClientDropDownList-list" data-role="popup" style="position: absolute; height: 200px; display: none; font-family: Helvetica; font-size: 12px; font-stretch: normal; font-style: normal; font-weight: normal; line-height: normal; width: 244px; transform: translateY(-206px);">
but in one specific machine is also applied mobile css and html generated is
<div class="k-list-container k-popup k-group k-reset km-scroll-wrapper" id="ClientDropDownList-list" data-role="popup" style="position: absolute; overflow: hidden; height: 200px; display: none; font-family: Helvetica; font-size: 12px; font-stretch: normal; font-style: normal; font-weight: normal; line-height: normal; width: 244px; transform: translateY(-206px);"><div class="km-scroll-header"></div>
Please note the difference in bold. This machine's browser has no different setting than other machines. Due to extra attributes, we are unable to get scroll in dropdown. Can someone point us to solution?
Thank you

Hi everyone,
I'm actually searching to plug the ImageBrowser feature to a folder in a SharePoint library instead of a standard folder. I don' find any information about this on Internet.
I tried to set the contentFolderRoot variable to the link of the folder, but it doesn't work.
Can you give me some hints on how to implements this please ? If it's possible at least.
Thank you in advance.
Hello,
The dialog action buttons are not displayed correctly in a mobile app. How can I fix this?
Axel
Hi there,
I'm using Kendo UI with Angular for some months now and had to go thru many workarounds and "does and donts".
I have realised our big Organigram with the Diagram Widget (tree, tipover/down) where I can move around (its really big).
So, I was in hope, that nothing can stop me from finishing the project today, until I tried my search functionality.
I have a autocomplete to select a node, I then search thru the shapes and wanted to bring that shape into view.
Here is the Demo with your samle data:
http://dojo.telerik.com/IcofI
Try to pan (drag) the diagram around and click the BringIntoView Button multiple times, does anything but not what it should.
I tried to use a Rectangle with no success, so please advise, if I may do something wrong here.
Many thanks,
Daniel

Hi,
I have kendo timepicker control which is containing time in 5 min interval i.e. "9:00 AM, 9:05 AM, 9:10 AM". If I select any time from dropdown and close the dropdown and once I reopen the dropdown it took me the selected time which is fine but when I set the value in TimePicker dropdown i.e "10:35 PM" and when I open the dropdown it should scroll down to the "10:35 PM" which is not happening right now. So in nutshell it should auto scroll to set value i.e "10:35 PM" Once i open the timepicker control.
Could you please help me to acheive the functionality?

<input data-role="numerictextbox" data-format="0" data-decimal="0" data-min="0">Hi,
I'm relatively new to Kendo MVC Grid and in the middle of building a new app with it...
I know that it is possible to delete a record if I use the "removeRow" from Kendo Grid if a have a reference to the current row i.e:
var grid = $(gridname).data("kendoGrid");var tr = $(e.target).closest("tr");grid.removeRow(tr);but what if I have no reference to the current row (e.target) because I want to delete a selected row from another popup view (see Picture)?
the following Code does'nt work:
var grid = $("#grid").data("kendoGrid");var dataitem = grid.dataItem(grid.select());grid.dataSource.remove(dataitem);grid.dataSource.sync();
please give me the info how is the best approach to remove a selected row from grid in my Situation?
regards robert
When arrowing through the items in a simple listview, sometimes it will be announced by a screen reader (NVDA) whether the item is selected. For example:
Aniseed Syrup not selected 3 of 4
Sometimes this information is not included in the feedback, for example:
Aniseed Syrup 3 of 4
It seems that feedback that an item is "selected" is never provided. It also seems that I start getting the not selected feedback after an item is selected and then unselected (but not if the item has never been selected) It seems that the aria-selected attribute is set correctly in all cases, I'm just not getting the feedback I'm expecting. I'm providing a link to a dojo that I put together. Any idea why I'm not consistently getting feedback similar to:
Aniseed Syrup (not) selected 3 of 4
?
Thanks!
http://dojo.telerik.com/UcAmUf/3

TreeList Column Resize work fine in LTR mode but it doesn't work properly in RTL Mode
try resize columns in this example :
http://dojo.telerik.com/OHUje
is there any fix code for this bug ?