How can we customize kendo grid filter options "Is empty","Is not empty" etc like the code which is mentioned below.
.Filterable(filter => filter.Mode(GridFilterMode.Menu).Extra(false)
.Operators(oper => oper.ForString(str => str.Clear()
.IsEqualTo("Is equal to")
.Contains("Contains")
.StartsWith("Starts with")
)))
Hello,
can anyone tell me why the dropdown not fits when filtering("contains") ??
1.@(Html.Kendo().DropDownListFor(m => m.Planstelle).BindTo(Model.AvailablePlanstellen)2. .Filter("contains")3. .HtmlAttributes(new { style = "width: 100%; margin-right: 10px" }))
this makes me crazy ^^
Best Regards


We have need to make the kendo scheduler visible when the create/edit popup is brought up (by double clicking an event already there, or a free spot on the scheduler), so we resize the scheduler and fit the popup off to the right in the space now open. I have it resizing using the open, close, activate, and deactivate events of the window to control when to resize the scheduler.
However, when it resizes, the events stay the same size and don't move while the days in the week and month view squish with the resize, making all the events out of place until the scheduler refreshes. However, when refreshing after resizing the scheduler, the edit/create popup closes, which throws an exception because the scheduler edit event can no longer find components that were defined in the edit html template...
Is there a good way to resize the scheduler and have events follow the resize on edit/create popup open?




Is there a way to stop a kendo element from rerendering and triggering the databound event while i'm updating the data?
I'm looping through the data to update a field. but everytime a field is changed, the element rerenders and triggers the databound
angular.forEach($scope.list.dataSource.data(), function (item) {});
Is it possible to only render and the databound be triggered only after the loop and not while looping?

Using the bower package and its gulp "custom" task to build a custom distribution, if I include the grid widget, it doesn't seem to automatically include the "filtercell" widget, so grids with filtering will throw an error due to the missing code. The Grid source defines a bunch of dependencies including "kendo.filtermenu", "kendo.excel", etc. Shouldn't "kendo.filtercell" be a dependency as well, or is there some reason it has to be included separately?
Someone brought this up a year or two ago, but over in the Issues area of Core on github, but it was closed as a Pro problem. I don't know if it was ever raised here. I can include filtercell in the argument list to "gulp custom" if necessary, but I was just curious.
Here is an example, just scroll down to the last item and click. It will flicker. Using IE11
http://dojo.telerik.com/EhEgi
