I'm using the Kendo version 2022.3.913.545
The default filter type selected in the dropdown is "DoesNotContain"!
When does it happen? when I add the localization file kendo.messages.**-**.min.js, while it should be "Contains"!
update: it seems Kendo selects the 5th (index 4) element of the filter dropdown as the default filter type! and in our language the order of the elements are as follows:
IsEqualTo,
IsNotEqualTo,
StartsWith,
Contains,
DoesNotContain,
EndsWith,
...
so the DoesNotContain is selected by default!
it is solvable by adding the following line
.Filterable(filter => filter.Operators(op=>op.ForString(t=>t.Clear().IsEqualTo("***").IsNotEqualTo("***").StartsWith("***").EndsWith("***").Contains("***").DoesNotContain("***").IsNotNullOrEmpty("***").IsNullOrEmpty("***"))).Mode(GridFilterMode.Row)))
it clears the filter types from the dropdown and puts item by item as you put in the list! On this occasion, I put the Contains filter type on the fifth position so it works!
but I don't want to use this method and want to use the Kendo localization only!!
Hello
On preliminary testing of this signature form it seems there is an offset to the right on mobile devices even more so when holding the device in landscape, especially when changing the view when the canvas is already loaded.
Tested page is https://demos.telerik.com/aspnet-mvc/signature on android with chrome browser.
Any use-case to use this will be on a mobile device so it should work flawless.
Looking forward to a solution

Hi,
we implemented the functionality like described here: https://www.telerik.com/forums/auto-save-row-when-moving-to-the-next-row#login
This works well when switching rows inside the grid, but unfortunately it doesn't work when leaving the grid, or when using any of the function buttons (NEW, DELETE) inside the grid.
Hello, I've been trying to switch from using manual installed DLLs in a lib folder to NuGet through https://nuget.telerik.com/v3/index.json
Currently using version 2018.3.911.545 manually installed but when I try and install it through nuget I get version 2016.2.607 as latest stable. This feels odd, especially since when i check latest stable it states version 2022.3.913 https://www.telerik.com/support/whats-new/aspnet-mvc/release-history/ui-for-asp-net-mvc-r3-2022-(version-2022-3-913)
Am I missing some important step here?

Hi everyone,
I have a little problem with filtering my Grid and I hope that you can help me.
I am currently in the process of developing a grid in which I list all my projects with the associated data.
In the first column I list the project number in the form of strings. Usually all project numbers have a length of 9 characters. Due to certain circumstances, I also have entries of projects in my database where the project number is shorter than 9. (but I urgently need this data for another use case)
In the grid that I am developing here, I only want to list projects with a project number length of 9 characters. Is there any filter option where I can specify how long a cell's value must be for it to be displayed?
If a value has less than 9 characters, the entire row should be hidden. It is important to note: the rows cannot be edited and are only listed using a READ function.
In the picture (attachment) you can see an example. In this case, the first two rows should be filtered and hidden.
Thanks in advance
Lars
Hi,
Is there a way to auto save a row when you've finished editing and moved to another next row either by tabbing to the next row or editing a cell on another row?
I'm using InCell mode.
Regards,
Tim
HTML
<input type="checkbox" id="chkShowPopEventDay" />JavaScript
$("#chkShowPopEventDay").kendoCheckBox({
label: "ShowPopEventDay",
checked: true,
});
I tried to use the check box by referring to the address, but the message appears as follows. Is there anything wrong?
Reference URL: https://demos.telerik.com/kendo-ui/checkbox/index
I have an app thats working with SignalR grids, but now we want to add bearer auth.
The token handling stuff has to happen before my SignalR promise is set, but the problem is the Kendo components required the SignalR promise to bind.
How can I set a SignalR promise that the Kendo components can use which will not resolve until my own token handling functions are complete?
Here is a sample of what we're doing:
getTokenPopup({
scopes: ["api://918c95d7-8c39-4486-9e15-83d061a30fa6/access_as_user"]
})
.then(response => {
$.ajaxSetup({
beforeSend: function (xhr) {
xhr.setRequestHeader('Authorization', 'Bearer ' + response.accessToken);
}
});
myApp.hub = $.connection.searchHub;
myApp.hubStart = $.connection.hub.start({
waitForPageLoad: false,
transport: "longPolling"
});
})
.catch(error => {
console.error(error);
});
Open the search box. The default condition is fuzzy query, not equal to