Hello all,
i want to reload my dropdown list(filtering and suggest set) after providing some filtering and keep the list open with the results to select from...
The problem is that after setting the datasource with the new values, sometimes the dropdown is closed...
steps:
Step 5 makes me trouble...
The filtervalue is taken as follows:
var bel = $("#detail-bel").data("kendoDropDownList");
var filterInput = bel.filterInput;
filterInput.keydown(function(e){
if(e.keyCode == 13){
stopEvent(e);
loading new data with this.value as filterstring
}
Any suggestions?
Thank you...

Hello,
is there a way to get the id of the pressed action button if using a template?
<script id="fileUploadTemplate" type="text/x-kendo-template">
<span class='k-progress'></span>
<div class='file-wrapper'>
<text class='file-heading file-name-heading'>Name: #=name#</text>
<text class='file-heading file-size-heading'>Size: #=size# bytes</text>
<strong class="k-upload-status">
<span class="k-upload-pct"></span>
<button type="button" class="k-button k-button-bare k-upload-action">
<span class="k-icon k-i-close k-delete" title="entfernen"></span>
</button>
<button id="BUTTON_TWO" type="button" class="k-button k-button-bare k-upload-action" style="left:-70px;">
<span class="k-icon k-i-arrow-s k-delete" title="entfernen"></span>
</button>
</strong>
</div>
</script>
I want to get the id in the remove function of the widget, so i can pass individual data to the servers "remove"-Action.
The functions event.sender is not the pressed button...
Any way?
The reason why i need it is to have a button for previewing allready uploaded files from this widget dialog...
Thank you,
Richard.
Hi,
I have been looking for a documentation of items() function of kendo grid.
I haven't found it in http://docs.telerik.com/kendo-ui/api/javascript/ui/grid? or its base classes. Where is the function documented?
Example of usage http://docs.telerik.com/kendo-ui/web/grid/how-to/Selection/persist-row-selection-while-paging

Hello,
Iam trying to make to work simple dropdownlist. Here is a link to example:
http://dojo.telerik.com/EhiCa
I want to make it work so the value set to model on scope will be present in textbox of dropdownlist.
Why I need this? I got a form where user can input FirstName, to speed it up for user I have a table with FirstNames ( not having any id as each FirstName is unique ). I dont wnat to use any nested models or data-text-value fields etc. The dropdown needs to be filterable so basicly there can be a case where model have FirstName that doesnt exists in DropDown datasource ( as I filter it using server filtering ). Also I have to use ng-model instead of k-ng-model because I have validation that watches only ng-model.
I tried many solutions but none of them worked. Is it possible what I am asking for?

Hi,
We recently attempted to upgrade from Kendo 2014.2.716 to 2015.3.1116 and we've experienced several breaking changes along the way. We've resolved everything except for the following issue: when a Kendo Splitter is on an AngularUI modal, it does not render. This worked in the 2014 release, and has since stopped working.
Please see this Dojo for an example: http://dojo.telerik.com/IYOvA/7. I've included both sets of scripts, as it is important to use a more modern version of AngularJS than is bundled with the 2014 Kendo release to replicate our environment.
Thanks!
Hi,
I'm using Menu to navigate at this point and initialize it with dynamic data, that depends on the current user logged-in, using this line:
this.Menu.setOptions({ dataSource: $.parseJSON(JSON.stringify(this.BindingSource._tableItem.Rows)) });
What I need is collapsing, so I think to replace the Menu with Toolbar, but can't find a way to initialize the Toolbar at run-time, except to run a series of different add commands...I'm more interested to bind it to some data (JSON)...
How can I do that?
Using a data field that starts with a number prevents the chart from rendering. Numbers can be used within the field but apparently not at the very beginning.
Is there a workaround for this?
This is an example:
var stats = [
{ 1result1: 30, result2: 20, date: new Date("2011/12/20") },
{ 1result1: 50, result2: 20, date: new Date("2011/12/21") },
{ 1result1: 30, result2: 20, date: new Date("2012/01/05") }
];
Change 1result1 to result1 and everything works fine.
http://dojo.telerik.com/aMIjE
