I have an issue on grid filter
My data is: "Test Data", this text have 2 spaces, but when i typing "test", filter auto trim space on my data and show "test data" and then grid filter wrong logic.
So what is solution in my case ?
thank you
Hi Telerik,
We did the security scanning for our website using Acunetix Security Scanner. We received summary that related to Kendo UI.
4. Absence of Anti-CSRF Tokens
[Low]
Trigger by : Kendo All min.js , and those
MVC form which do know have @Html.AntiForgeryToken()
Solution : For
kendo,don’t have yet.
For MVC form
which do not used form submit feature, change <form> to <div> html
tag.
For MVC form
which used form submit , add @Html.AntiForgeryToken(), MVC controller will auto received and validate
this token when form being submit.
I was wondering if you could give me some advice about this.

Hello,
IE Version 11.93.17763.0
Gantt task scroll issue:
1. Scroll down to some task
2. Select task
3. Then scroll for task list move to zero (look screen)

Hello,
I am dealing with data split into two categories.
My project is based on this : https://demos.telerik.com/kendo-ui/bar-charts/grouped-data
I need it to be likeit is in the attachment
I think I need something like extra categoryField in a serie
I am using kendo UI sortable without grid in my application. But it seems IE browser is not compatible for it. Our application is using AngularJS with select and ng-repeat. I was able to get it work for Chrome and Firefox but not with IE. Below is the code snippet for HTML
<select class="form-control" kendo-sortable k-on-end="endHandler(kendoEvent)"
k-placeholder="placeholder" k-hint="hint" id="favorite_reports" selectedClass= "selected"
multiple ng-model="favoriteReports.chosenReports">
<option ng-repeat="link in config.links">
{{link.NAME}}
</option>
</select>
JS:
$scope.endHandler = function (e) {
var sortable = e.sender;
// prevent the sortable from modifying the DOM
e.sender.draggable.dropped = true;
e.preventDefault();
// update the model and let Angular update the DOM
$timeout(function () {
$scope.$apply(function () {
$scope.config.links.splice(
e.newIndex, 0, $scope.config.links.splice(e.oldIndex, 1)[0]
);
});
});
};
$scope.placeholder = function (element) {
return element.clone().addClass("placeholder").text("drop here");
};
$scope.hint = function (element) {
return element.clone().addClass("hint");
};
And when I use ul and li instead of select, sortable function is not working as expected in chrome, IE and other browsers as well. When I try to drag one element, next element from the queue has the index change and couple of other issues.
Could you please give me a working example for kendo with sortable functionality (not grid) which uses select and ng-repeat and works for ALL THE BROWSERS as well as AND we can disable the sortable functionality onClick on list for other functionality.
Also onClick, I was trying to get the e.currentTarget.selectedOptions.length value which is having the issue with IE saying as selectedOptions is undefined and chrome is working as expected.
Also I am trying to achieve "multiple" for onClick functionality to remove from the list and add it to other list. (FYI)
Please let me know, if there is any example links or code snippet which works for all browser.
Thanks in advance,
Sujatha
Hello,
I'm trying the Kendo UI with lastest version and I'm facing to an issue using the TreeList component under Chrome (80.0.3987.122).
Please see the attached screenchot, coupling kendo ui 2020.1.219 with jQuery 3.4.1, the height of the first row is not initialized correctly.
You can run this demo here: https://dojo.telerik.com/EsobuqAH
Note it works under FireFox.
Any Idea ?
Thx.
Julien.
I want to create a dropdownlist named 'font size' that helps a user select font size out of the values lets say 12 pt, 14 pt, 16 pt....and so on.
These list items should not all appear with the same font size but should rather appear with a font size they represent. For example - 12 pt must show in 12 pt size, 14 pt in 14 pt size and so on.
Is it possible to show different list items in a dropdownlist in different font sizes? If yes, then how?
Thanks in anticipation.
Hi,
As my title says, Im trying to bind MVVM attributes to command buttons in a KendoGrid. At the moment im struggling with binding an 'enabled' attr.
Dojo: https://dojo.telerik.com/AXojaNuT
In the above, I've bound the enabled state to a command button but it only makes the button look disabled, its still clickable.
Please advise.
Thanks,
Grant
