Is it possible to directly edit the formatting of the default Excel output from the Treelist widget? Currently I am using a datasource export function to create my Excel document, however I am unable to sort the list exactly the way it appears in the widget itself without iterating through the entire datasource to sort and format as needed.
Specifically, I need to have parent items bolded with a blank line above to show grouping. Child items are displayed under parents with no blank cells tabbing the document over.

Hi , I have model with iterating items to show the list of items and I want to show tooltip for each item description. Please help me.
below is the code snippet.
</tr>
@foreach (var item in Model)
{
<tr>
<td>
<ul class="single">
<li>
@Html.ActionLink(item.Name, "LoadValue", "Category", new { item.BusinessId, ViewBag.Environment }, null)
</li>
</ul>
</td>
</tr>
}
I am new to Kendo. and am confused how to bind the tooltip for each item here.

I'm looking for a way to clear my kendo grid which is using remote odata service. I know that I can call dataSource.data([]) when I'm using local data (i.e. setting dataSource.data config property), but I can't understand how to do the same thing using remote data (i.e. using data.transport). Any suggestions?
The only way I've found is to conditionally call options.success({empty odata response object}) in your transport callback. But the problem is that such empty object contains @odata.context property which is dynamically generated on the service side and I'm not sure where it is used by kendo or it is'nt.

<script> var keyDown = kendo.ui.DropDownList.prototype._keydown; kendo.ui.DropDownList.prototype._keydown = function (e) { if (e.keyCode === kendo.keys.SPACEBAR && this.filterInput[0] === document.activeElement) { return; } keyDown.call(this, e); }</script>I have a grid pop-up editor defined, which uses a numeric textbox. I'm trying to get this to show only integers, but I'm not having any luck.
From other forum posts, data-format="0" should work, but this breaks the grid, with an 'e.slice is not a function' error.
Currently it is defined as:-
<p><label>Year:</label><input type="text" name="Year" data-type="number" data-bind="value:Year" data-role="numerictextbox" data-spinners="false" data-decimals="0"/></p>
This works fine, except shows two decimals.
If I change it to:-
<p><label>Year:</label><input type="text" name="Year" data-type="number" data-bind="value:Year" data-role="numerictextbox" data-format="0" data-spinners="false" data-decimals="0"/></p>
The grid stops working, and the error is raised.
How can I get it to work?
In bootstrap a project I have used kendo.all.min.js. However, for a couple of selected pages I only need MVVM Integration so I figured I will setup the pages using kendo.all.min.js (https://github.com/telerik/kendo-ui-core).
I include: kendo/kendo.common-bootstrap.core.min.css and /kendo/kendo.core.min.js but the code below gives me the following error: Uncaught TypeError: kendo.observable is not a function
What am I doing wrong?
<div id="app">
<div data-bind="html: test"></div>
</div>
<script type="text/javascript">
"use strict";
var viewModel = kendo.observable({
test: "<span class='label label-success'>test</span>"
});
kendo.bind($("#app"), viewModel);
</script>
Hi! I'm using a tiny REST api as the grid's data source. For the API its perfectly fine to return a 404 error if data isn't found, but the grid automatically handles this like a regular error (say, like a 500), instead of letting me handle it through the noRecords template (which is called fine if I return an empty collection instead of a 404 in the API).
How can I handle 404s like how the grid handles empty collections with the noRecords template?
