Reputation: 61
I am not able to get KENDO splitter work in IE11. It works fine in chrome. here is a jsfiddle snippet for this:
$(document).ready(function() {
$('#splitter').kendoSplitter({
panes:[
{collapsible:true,size:'100px'},
{collapsible:true,resizable:true}
]
});
});
Open this in chrome it works, but in IE11 it does not work. Can someone help with this?
Upvotes: 1
Views: 1395
Reputation: 18402
You need to use a version of Kendo UI that is compatible with the respective browser version. Your example works fine with version 2013.3.1316, for example:
$(document).ready(function() {
$('#splitter').kendoSplitter({
panes:[
{collapsible:true,size:'100px'},
{collapsible:true,resizable:true}
]
});
});
See this demo.
Upvotes: 1