Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom Filterable.Operators are not applied for the Kendo UI Grid for ASP.NET Core wrapper #3023

Closed
kdikov82 opened this issue Apr 6, 2017 · 1 comment

Comments

@kdikov82
Copy link
Contributor

kdikov82 commented Apr 6, 2017

Bug report

Custom Filterable.Operators are not applied for the Kendo UI Grid for ASP.NET Core wrapper. The following configuration will not change the operators for "String" fields:

@(Html.Kendo().Grid()
.Name("Grid")
.Filterable(filterable => filterable
.Extra(false)
.Operators(operators => operators
.ForString(str => str
.Clear()
.Contains("Contains")
.DoesNotContain("Does not contain")
.StartsWith("Starts with")
.EndsWith("Ends with")
.IsEqualTo("Is equal to")
.IsNotEqualTo("Is not equal to ")
)
)
)

Reproduction of the problem

The problem could also be observed in our current (version 2017.1.223) demo for customizing the filter menu:
http://demos.telerik.com/aspnet-core/grid/filter-menu-customization

Environment

  • Kendo UI version: 2017.1.223
@Xizario
Copy link

Xizario commented Apr 7, 2017

Duplicate of this #2346

@Xizario Xizario closed this as completed Apr 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants