Inside the filter of the grid I need to change the order of the items "And" & "Or" inside the list to show "Or" by default.
I tried declaring the grid with jquery but I can only change the text of the item:
$("#testgrid").kendoGrid({
columns:
[
{field: "name"},
{field: "age"}],
dataSource:[
{name: "John", age:"30"},{name: "Mike", age:"32"}],
filterable:{
messages:{
or: "filterOr",
and: "And"
}
}
})
Is it possible to change the order of the items?
Thanks