How to change the default filter operator in kendo ui grid mvc

GerardBeckerleg

I have managed to change the default filter order for the Kendo Grid using:

.Filterable(filterable => filterable
                        .Extra(true)
                        .Operators(ops => 
                            ops.ForString(str => str.Clear()
                                                    .Contains("Contains")
                                                    .StartsWith("Starts with")
                                                    .EndsWith("Ends with")
                                                    .IsEqualTo("Is equal to"))
                        ))

Is there any way I can change the default operator to OR?

enter image description here

Atanas Korchev

This can be done via the filterMenuInit event:

 /* grid configuration snip */
.Events(e => e.FilterMenuInit("filterMenuInit"))
 /* grid configuration snip */

 <script>
 function filterMenuInit(e) {
      e.container
         .find("select.k-filter-and")
         .data("kendoDropDownList")
         .value("or");
 }
 </script>

Here is a live demo: http://jsbin.com/etItEpi/1/edit

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to change the default filter operator in kendo ui grid mvc

From Dev

How to filter a Kendo UI MVC grid using a dropdown list

From Dev

How to change the default value of Grid page size in Kendo UI?

From Dev

How to change the background of a cell dynamically in a Kendo MVC UI Grid?

From Dev

Can I change the tooltip's default action of Kendo UI grid in MVC?

From Dev

Change kendo ui mvc grid filter menu position to left side of the header text

From Dev

How to modify Filter in Kendo UI Grid?

From Dev

How to set default value for any field of a ViewModel using Kendo UI Grid and ASP.NET MVC?

From Dev

Sorting on Kendo UI MVC Grid

From Dev

Sorting on Kendo UI MVC Grid

From Dev

Kendo UI MVC Grid Not Updating

From Dev

Change a column in Kendo UI Grid

From Dev

Kendo UI Grid - How to catch an event fired by filter

From Dev

How can I remove filter operators from kendo mvc grid

From Dev

How to reuse and parameter a Kendo UI grid EditorTemplate (using ASP MVC)?

From Dev

How to transpose rows and columns in a Kendo UI grid in MVC application?

From Dev

How to find the specific word in kendo UI grid in MVC

From Dev

how to check and change color of cell value in kendo ui grid

From Dev

How to change Kendo MVC grid's edit command template?

From Dev

How to change Kendo MVC grid's edit command template?

From Dev

The operator date in kendo ui Grid is not getting the kind

From Dev

kendo ui grid filter, sort and paging in the server

From Dev

Kendo UI grid filter cell that contains an array

From Dev

Kendo UI grid filter cell that contains an array

From Dev

Date filter on Kendo UI Angular 2 Grid

From Dev

Kendo MVC Grid Filter Customization not working

From Dev

How to change configuration option in Kendo UI ASP.Net MVC

From Dev

In Kendo UI MVC Grid how do i add a Kendo Upload to each row?

From Dev

Kendo UI grid, search box in toolbar in mvc

Related Related

  1. 1

    How to change the default filter operator in kendo ui grid mvc

  2. 2

    How to filter a Kendo UI MVC grid using a dropdown list

  3. 3

    How to change the default value of Grid page size in Kendo UI?

  4. 4

    How to change the background of a cell dynamically in a Kendo MVC UI Grid?

  5. 5

    Can I change the tooltip's default action of Kendo UI grid in MVC?

  6. 6

    Change kendo ui mvc grid filter menu position to left side of the header text

  7. 7

    How to modify Filter in Kendo UI Grid?

  8. 8

    How to set default value for any field of a ViewModel using Kendo UI Grid and ASP.NET MVC?

  9. 9

    Sorting on Kendo UI MVC Grid

  10. 10

    Sorting on Kendo UI MVC Grid

  11. 11

    Kendo UI MVC Grid Not Updating

  12. 12

    Change a column in Kendo UI Grid

  13. 13

    Kendo UI Grid - How to catch an event fired by filter

  14. 14

    How can I remove filter operators from kendo mvc grid

  15. 15

    How to reuse and parameter a Kendo UI grid EditorTemplate (using ASP MVC)?

  16. 16

    How to transpose rows and columns in a Kendo UI grid in MVC application?

  17. 17

    How to find the specific word in kendo UI grid in MVC

  18. 18

    how to check and change color of cell value in kendo ui grid

  19. 19

    How to change Kendo MVC grid's edit command template?

  20. 20

    How to change Kendo MVC grid's edit command template?

  21. 21

    The operator date in kendo ui Grid is not getting the kind

  22. 22

    kendo ui grid filter, sort and paging in the server

  23. 23

    Kendo UI grid filter cell that contains an array

  24. 24

    Kendo UI grid filter cell that contains an array

  25. 25

    Date filter on Kendo UI Angular 2 Grid

  26. 26

    Kendo MVC Grid Filter Customization not working

  27. 27

    How to change configuration option in Kendo UI ASP.Net MVC

  28. 28

    In Kendo UI MVC Grid how do i add a Kendo Upload to each row?

  29. 29

    Kendo UI grid, search box in toolbar in mvc

HotTag

Archive