Hi,
On the UI demo page, there's a nice panel navigator used to list all the different components, allowing you to navigate all the demos etc. (see attachment)
Is this available as a component in Kendo UI itself?
Jamie
<select kendo-drop-down-list="remote" k-data-text-field="'ProductName'" k-data-value-field="'ProductID'" k-data-source="productsDataSource" k-ng-model="SelectedProductId" k-value-primitive="true" style="width: 200px"></select>Inside ContentURL of the tab i.e. "occupancy.html", it did not show {{message}} of controller.
<div id="fundingTab" data-ng-controller="fundingController">
{{message}} <== show in here, but not inside occupancy.html (i.e. inside tab)
<ul>
<li class="k-state-active">Occupancy</li> <== click & travel to occupany.html but not show {{message}}
<li>Revenue</li>
</ul>
</div>
$(document).ready(function () {
var ts = $("#fundingTab").kendoTabStrip({
animation: { open: { effects: "fadeIn" } },
contentUrls: [
'clientApp/views/funding/occupancy.html',
'clientApp/views/funding/revenue.html'
]
}).data('kendoTabStrip');
ts.tabGroup.on('click', 'li', function (e) {
ts.reload($(this));
});
});
I have a one confirmation template and one information template that i want to use across my application in many files. Right now I am using the template in all the places and calling it in all pages. But I want to do something like this, where I can have these templates common and javascript method that takes message and returns true if clicked yes and returns false if clicked no. My application is asp.net mvc application.
<script id="template-confirmation" type="text/x-kendo-template"> <p class="delete-message">#= data #</p> <button class="delete-confirm k-button">Yes</button> <button class="delete-cancel k-button">No</button></script><script id="template-information" type="text/x-kendo-template" style="align-content:center"> <p class="delete-message" style="text-align:center">#= data #</p> <p style="text-align:center"> <button class="delete-confirm k-button">OK</button> </p></script> function dialogConfirm() { var kendoWindow = $("<div />").kendoWindow({ title: "Confirm", resizable: false, modal: true, height: "100px", width: "300px" }); kendoWindow.data("kendoWindow") .content($("#"+templatename+"").html()) .center().open(); kendoWindow .find(".delete-confirm,.delete-cancel") .click(function () { if ($(this).hasClass("delete-confirm")) { kendoWindow.data("kendoWindow").close(); return true;// if it is returned true I want to perform something } else if ($(this).hasClass("delete-cancel")) kendoWindow.data("kendoWindow").close(); return false;// if it is returned false I want to perform something else }) .end() }
Thanks,
Veena

When I use the upload control, the users see "C:\fakepath\filename.jpg"...I read that this is part of the HTML 5 spec to hide such info. When I looked at your demo: http://demos.telerik.com/kendo-ui/upload/index
I noticed that just the filename is showing. Is there a property I can set for that? Did you use some type of custom JQuery to remove the C:\fakepath?
Thanks
Hi,
until now I used the grid with odata-v4 data-sources. Auto-complete source configuration was easy: either omit the source and the Kendo grid fetches the data automatically or provide an odata data-source to be used for auto-complete values.
Today I have a scenario where I have local data and would like to filter the columns with auto-complete filters (row-filters).
From what I've read one has to set up the filter UI widget explicitly for each column. E.g.:
filterable: { ui: function (element) { element.kendoAutoComplete({ dataSource: someDataSource, dataTextField: "Name" }) }}This seems tedious because: 1) the data-source is the same as for the grid, 2) the field Name is the same as for the grid's column, 3) one has to have a reference to the data-source.
Is there a built-in mechanism to easily configure the filter to use auto-complete with the grid's own data-source and the grid column's field? After all, in the local data scenario, we would like to filter the stuff, that's ​in the grid already. So I wonder if we can avoid the ceremony.
Does an option like "filterable.autocomplete: true" maybe exist that I just overlooked?
Regards,
Kasimier Buchcik
Is there an example of how to accomplish inline editing (such as you have in this demo: http://demos.telerik.com/kendo-ui/editor/inline-editing) in AngularJS?
Many thanks,
Jayme

I feel like this is a bug:
- add a dropdown to a page
- open the dropdown
- mouse mouse cursor on top of the dropdown
- use the mouse wheel : content scrolls as expected
- mouse mouse cursor on ​outside of the dropdown
- use the mouse wheel : bug : the dropdown closes
- Expected behavior: the page should scroll (if necessary) but the dropdown should stay open
​
