Hi
I am using kendo-Dialog for shown the Employee Details. In Chrome or Mozilla when I use CTRL+A all the details in the dialog was selecting correctly. But in IE browser when I use CTRL+A the Select All keys are working but the values are not selected in the same Dialog for IE Browser.
I have used below code:
this.$(".employee").keydown(function (e) {
if (e.ctrlKey) {
if (e.keyCode == 65 || e.keyCode == 97) { // 'A' or 'a'
alert("Alert");
$(this).select();
}
}
});
But its not working in IE 11.

Here's an example of what I'm working with: http://dojo.telerik.com/uYidA/7
I'm making a grid that is using autoSync and in cell editing for updating rows and allowing the rows to be reordered with kendo sortable as well.
The issue I'm running into is whenever you try to add a new record I'm getting this error "Uncaught TypeError: Cannot read property 'closest' of undefined" which is due to autoSync trying to find a row that isn't currently there yet.
What I'm wondering is if there's a way to add a row using the edit/update/delete whenever I'm using batch and in cell editing?
Basically I'm wanting to be able to update rows with in cell editing using autoSync to save as you go, but whenever you add a new record to use inline editing so that I'm not creating a blank record in the database and then updating that blank record?
Let me know if that makes sense! I know it's a little confusing
Thanks!
Hello,
There is the following issue.
I cant drag from one grid to another when the second has no data.
here is the dojo: http://dojo.telerik.com/UZaMU
Trying to run some unit tests of our Kendo components which are wrapped in Marionette Views and am getting a "kendoGrid is not a function" error, and am not sure why.
The kendo global is attached to window, and all the kendo* functions do come up as undefined in the debugger.
Here is the load order from the body of the karma debugger:
<script type="text/javascript" src="/base/node_modules/jasmine-core/lib/jasmine-core/jasmine.js" crossorigin="anonymous"></script><script type="text/javascript" src="/base/node_modules/karma-jasmine/lib/boot.js" crossorigin="anonymous"></script><script type="text/javascript" src="/base/node_modules/karma-jasmine/lib/adapter.js" crossorigin="anonymous"></script><script type="text/javascript" src="/base/web-libs-common/src/main/resources/META-INF/resources/static/js/lib/jquery/jquery.js" crossorigin="anonymous"></script><script type="text/javascript" src="/base/web-libs-common/src/main/resources/META-INF/resources/static/js/lib/kendoui/kendo.all.js" crossorigin="anonymous"></script><script type="text/javascript" src="/base/node_modules/requirejs/require.js" crossorigin="anonymous"></script><script type="text/javascript" src="/base/node_modules/karma-requirejs/lib/adapter.js" crossorigin="anonymous"></script><script type="text/javascript" src="/base/test-main.js" crossorigin="anonymous"></script>
jQuery does not get loaded twice, BUT setting a break point in one of the tests and then inspecting it shows another jQuery script tag in the head element which is gone after all the tests run/blow up.
My karma.conf.js, test-main.js, and require.js config are here if needed:
StackOverflow Post
Any help would be greatly appreciated!
When adding filters to the header row, the items inside the filter window are not ordered - is there a way to do this?
In your example, https://demos.telerik.com/kendo-ui/spreadsheet/sorting-filtering, you can see this is the case.
Thanks!
Marc
When I edit/cancel an single occurrence of a recurring event, the event is removed from the UI. When I edit the series and cancel, nothing is removed (everything works as expected).
Scenario:
Result:
I've searched the threads and the internet with no solutions.
I would love to share code but company policy prevents it. Can anyone shed any light on this or point me in the right direction??
Thanks.
When using the slider with AngularJs, if I try to set a min or max value for the slider, the tick marks disappear - not sure if I'm doing something wrong or it's a bug...
<!DOCTYPE html><html><head> <base href="http://demos.telerik.com/kendo-ui/slider/angular"> <style>html { font-size: 14px; font-family: Arial, Helvetica, sans-serif; }</style> <title></title> <link rel="stylesheet" href="//kendo.cdn.telerik.com/2016.3.1118/styles/kendo.common.min.css" /> <link rel="stylesheet" href="//kendo.cdn.telerik.com/2016.3.1118/styles/kendo.default.min.css" /> <link rel="stylesheet" href="//kendo.cdn.telerik.com/2016.3.1118/styles/kendo.default.mobile.min.css" /> <script src="//kendo.cdn.telerik.com/2016.3.1118/js/jquery.min.js"></script> <script src="//kendo.cdn.telerik.com/2016.3.1118/js/angular.min.js"></script> <script src="//kendo.cdn.telerik.com/2016.3.1118/js/kendo.all.min.js"></script></head><body><div id="example" ng-app="KendoDemos"> <div class="demo-section k-content" ng-controller="MyCtrl"> <div> <h3>Ticks...</h3> <input kendo-slider ng-model="value" /> </div> <br><br> <div> <h3>No Ticks...</h3> <input kendo-slider ng-model="value" k-options="options" /> </div> </div></div><script> angular.module("KendoDemos", [ "kendo.directives" ]) .controller("MyCtrl", function($scope){ $scope.value = 0; $scope.options = { max: 100 } })</script></body></html>