I am trying to do this
http://demos.telerik.com/aspnet-mvc/dropdownlist/serverfiltering
It looks like I dont have to have any special action in the controler
This is my ddl
@(Html.Kendo().DropDownList() .Name("commonCreditorID") .DataTextField("CREDITOR_NAME") .DataValueField("COMMON_CREDITOR_ID") .HtmlAttributes(new { style = "width:250px" }) .Filter("contains") .DataSource(source => { source.Read(read => { read.Action("CommonCreditors_Read", "Home"); }) .ServerFiltering(true); }) )this is my action
public ActionResult CommonCreditors_Read(){ GetLoggedUser("/"); EntitiesModel entities = new EntitiesModel(); var creditors = entities.TBL_COMMON_CREDITORS_LISTs .Where(cc => !cc.OUT_OF_USE) .OrderBy(o => o.CREDITOR_NAME) .Select(cc => new { cc.CREDITOR_NAME, cc.COMMON_CREDITOR_ID }); return Json(creditors, JsonRequestBehavior.AllowGet);}it isnt filtering when I type..any ideas?

function anonymous(d, __f, __o) {return (d.Enabled == true && (d.DateCreatedDate || '').toLowerCase() == '2015-01-22t05:00:00.000z')}Hi
I have a Kendo Grid that has a Column which has had the filter customised to be a drop down select instead of a text box. This works perfectly until you save the grid layout, after that the standard filter is being shown.
Can anyone explain to me how I deal with this? It also seems to affect my custom groupHeaderTemplates too.
Many Thanks
Mike

kendo messages file contains if check for widget loaded. So I cannot load it once globaly (or maybe I'm wrong),
Could you advice how to load this file to affect all widgets, that are loaded dynamically in spa application? Is the only option to load it every time? which can be problematic
Kind Regards?
Have a grid that I'm currently filling out via Angular like so:
<tbody>
<tr ng-repeat="customer in customers | orderBy: 'domain'" ng-if="customer.email" >
<td>{{customer.namebspr}}</td>
<td>{{customer.nummer}}</td>
<td>{{customer.domain}}</td>
<td>{{customer.domain2}}</td>
<td>{{customer.domain3}}</td>
<td>{{customer.domain4}}</td>
<td>{{customer.domain5}}</td>
</tr>
</tbody>
Can I do the same thing with a spreadsheet, or do I need to pull the json data directly?
Click here to view dojo.
The date labels at the bottom are wrong. They should all be five days apart, but the labels "11-06-16" and "11-10-16" are only four days apart. This messes up the remaining date sequence.
I also noticed this. The second task's (JP task) bar representation does not go from beginning to end dates, but the first task (Ted task) displays properly.
Please advise.
Thank you for your help with this matter.

Hello,
Let's say that we have a long list of items inside the first Tab of a TabStrip control and we scroll this list to e.g. 50%.
If we move to another Tab then return to the first Tab, we see the list scroll was reset.
I set up a small example on Dojo: http://dojo.telerik.com/aGAlA/2 .Steps to reproduce:
- In tab One move the scrollbars vertically and/or horizontally
- Then switch to tab Two
- Return to tab One - you'll notice that the scroll position have reset.
This issue is happening only on Internet Explorer (tested with version 11).
Is thisa known issue with Kendo UI framework ?
Probably simple scenarios can be fixed with a workaround (listenting to Tab events and manually setting back the scroll position); however for very complex UI where there are many content controls with scroll bars - a workaround is not an easy option.

Hi,
Filter not working in column declared before multi header in kendu grid . when we filtering member in the datasourcerequest shows as another column name. In our grid Columns declares after multi header fields filter works fine. Sorting functions working fine in all sections .when i remove multi header everything works.
Thanks in advance
shyam
