Hi,
I am developing a MVC Project with kendo ui. One of the requirement is to filter blank values in grid columns. The filter option should be a part of existing filter options present with column headers. How can we implement the same?
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?