Having issues recreating the demo example of importing a spreadsheet. The demo references a saveUrl and I cannot determine what that is used for.
In addition, I tried the Dojo example of the fromFile method and could not get it to work. When I select a file, nothing happens. Is the change event not getting fired?
I am using Chrome as my browser. Any help would be appreciated. Basically trying to load a simple Excel file into the spreadsheet widget.
Thanks, Rick
Hi,
Please help me to get my templates which I load in MVVM in different tabs fine, until I load tabs and their respective content divs dynamically using tabStrip.
I should be able to load separate templates with in tabs but I am not sure how to go about it pulling from remote JSON.
Please have a look at the link below. I've tried to add my data as arrays in the project they are all remote JSON files.
I would appropriate if you could show me in the example how can I load different templates with different datasource in different tabs. In the example I am using tabsDataSource and tileDataSource.
Thanks.
Savas

Hi.
I'm working on a grid with hierarchy and inline editing. I'm facing an issue.
When I create a new father element I can expand the childs. So I could try to create the child even before the father was created. And that gives a error.
I want to disable the attempt to expand the childs until the father is created. ¿Is that posible?
Regards.
Hi Guys,
I'm following this example on your website http://docs.telerik.com/kendo-ui/controls/scheduling/scheduler/how-to/custom-edit-and-event-templates about a custom edit box for the .
but I want to replace the existing box with a box with a custom template http://demos.telerik.com/kendo-ui/multiselect/template
Can someone please me how to replace
this template
<div data-container-for="ownerId" class="k-edit-field">
<select id="ownerId" data-bind="value:ownerId" data-role="dropdownlist"
data-value-field="value" data-text-field="text">
<option value="1">Alex</option>
<option value="2">Bob</option>
<option value="3">Charlie</option>
</select>
</div>
with
$("#customers").kendoMultiSelect({ dataTextField: "ContactName", dataValueField: "CustomerID", headerTemplate: '<div class="dropdown-header k-widget k-header">' +'<span>Photo</span>' +'<span>Contact info</span>' +'</div>', itemTemplate: '<span class="k-state-default" style="background-image: url(\'../content/web/Customers/#:data.CustomerID#.jpg\')"></span>' +'<span class="k-state-default"><h3>#: data.ContactName #</h3><p>#: data.CompanyName #</p></span>', tagTemplate: '<span class="selected-value" style="background-image: url(\'../content/web/Customers/#:data.CustomerID#.jpg\')"></span><span>#:data.ContactName#</span>', dataSource: { transport: { read: { dataType: "jsonp", url: "//demos.telerik.com/kendo-ui/service/Customers",}}}, height: 400});
and make it still to work
thanks in advance
Hi
Currently using the treeView to display a "filesystem". when a user files the tree must refresh to sync the data (count etc)
When the is updated the tree goes back to the initial collapsible state. (the expanded property is provided from the backend)
Q: Is there a way to maintain the state or copy the state from the old to the new ?
I am developing a single-page application which is heavy with related database objects. This means I need navigation for different instances of different data objects.
So ideally I would like to have routes like this
/contact/23412 -> Visit view for contact/23412
What is "the way" for doing that with the kendoui router? My first thought is to override the navigate events... Which will get complicated when I have many of these custom routes...
We need to mimic the excel based report in one of angular based application. The report is actually an excel sheet with very well formatted cells and a chart at the bottom.
Can I use spreadsheet control for the same? If yes, let me know how.
