{x: Xi, y: Yi, label: someLabel, group: groupName}graphOpts = {dataSource: dataSource,xAxis: {min: data.min,max: data.max,title: {text: "Values #=data.view().min=# to #=data.view().max=#}}}

Hi,
I want to implement tool tips for kendo UI timeline view and tool tip will be based on events color and event data which will be a customize tool tip using angularJs version.
Please help..!!!
Thanks,
Lilan
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