Hello, i have just noticed that the push function of Datasource.Transport called more than once when the filterable property is set as
filterable: { mode: "row"}According to documentation, the data source will call the push function only once and provide callbacks which will handle push notifications (data pushed from the server).
Here is a demo that demonstrates the issue.
http://dojo.telerik.com/ETOzo

Dear Team,
I would like to know the difference between Kendo UI Web and Kendo UI Professional..
We have license for DevCraft and our website developed using ASP.NET MVC 3 and Visual Studio 2012. Now, we are in plan to upgrade the site with the new version of Telerik. So, I would like to know whether we need to use Kendo UI Web, Kendo UI Professional or ASP.NET MVC controls..
If I upgrade my site with Kendo UI Profession then my site work without any issue or do I need to upgrade ASP.NET version to higher..
Thanks,
Prakash.

Hi Kendo-Team,
is it possible to use a custom template for the column menu? I wasn't able to figure out a way to achieve this.
I want to apply several changes e.g. switch order of Columns/Filter dropdowns.
Thanks,
Jonas

Hi,
To add an event in the Scheduler, a user would double click the time slot where they want to add the event, and the popup would appear for then to do so. Is it possible to skip this step? I'm trying to create functionality so that when a user double clicks a time slot, a new event is auto-generated and saved without any further user interaction required. The new event would have the start and end date/time of the selected slot and 2 dynamically set additional resources, before it can be saved (Im using a customer eventTemplate, so the title is not required).
Thanks in advance,
Grant
I have a custom command in my grid:
columns.Command(command => { command.Edit(); command.Custom("InvoiceDetails"); command.Destroy(); }).Width(200);When the user clicks this button I would simply like to navigate to the page Details on the controller InvoiceController with the correct InvoiceID from the appropriate row the user clicked.
It seems this used to be done like so
commands.Custom("InvoiceDetails").Action("Details", "Invoice").DataRouteValuesHowever I have no action method on the custom command only a click method?
Where has this action method gone, and how do I now use the click method?
I'm using ASP.net Core 1.
I want to achieve the functionality in which the numbers needs to be displayed outside the event template but within the date.
Please find the screen shots of the requirement.
Here is the event template that I have used.
<script id="event-template" type="text/x-kendo-template"> 60-50-30 <div style="background-color: #: kendo.toString(colorId, "hh:mm") #"> <p class="bold"> <span class="bold"> #: kendo.toString(title) # </span> <span class="bold pull-right"> #: kendo.toString(trip.length) # Trips </<span> </p> <h3 style="background-color: #: kendo.toString(colorId, "hh:mm") #"> </h3> </div> </script>Can you please help me on this..
Is it possible to bind the Spreadsheet to IEnumerable<MyClass> where the property names would be the columns of the sheet and each item of the IEnumerable object would be a row in the sheet?
public class MyClass
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
var myObject = new List<MyClass>()
{
new MyClass() {Id = 1,FirstName = "Lucas",LastName = "Green"},
new MyClass() {Id = 2,FirstName = "Eva",LastName = "Black"},
new MyClass() {Id = 3,FirstName = "Miroslava",LastName = "Brown"},
};
Output:
Id FirstName LastName
1 Lukas Green
2 Eva Black
3 Miroslava Brown

Hi All,
I have created the grid with aggregate functions and it shows values as expected. Now I want to get the non empty (not null) count of the values in a column. By default aggregate only gives the total count. Appreciate the help.
Thanks,
Luke

I'm using custom background color codes in my event template as shown below..
<script id="event-template" type="text/x-kendo-template"> <div style="background-color: #: kendo.toString(colorId, "hh:mm") #"> <p class="bold"> <span class="bold"> #: kendo.toString(title) # </span> <span class="bold pull-right"> #: kendo.toString(trip.length) # Trips </<span> </p> <h3 style="background-color: #: kendo.toString(colorId, "hh:mm") #"> </h3> </div> </script>But the space is occupied by only a portion in kendo event.Please find the screen shot..
The JSON for binding the event is given below..
[ { "id": 1, "name": "Sand", "start": "/Date(1470024001000)/", "end": "/Date(1470038400000)/", "colorId": "#90CAF9", "status": "Delivered", "client": "Foyer" }, { "id": 1, "name": "Gravel", "start": "/Date(1470110401000)/", "end": "/Date(1470124800000)/", "colorId": "#CE93D8", "status": "Dispatched", "client": "Foyer" }, { "id": 1, "name": "Aggregate 20 mm", "start": "/Date(1470024001000)/", "end": "/Date(1470038400000)/", "colorId": "#9FA8DA", "status": "Delivered", "client": "Foyer" }]Please let me know where I'm doing wrong..