Hi, I've just started with KendoUI and I'm stuck already!
I created this simple page and it works fine in IE9, but in Chrome I have some strange artefacts like blurry text or wrong positioning of the button or leftovers like this screenshot
any ideas? thanks
I created this simple page and it works fine in IE9, but in Chrome I have some strange artefacts like blurry text or wrong positioning of the button or leftovers like this screenshot
any ideas? thanks
<!DOCTYPE html><html><head> <title></title> <script src="Scripts/jquery.min.js" type="text/javascript"></script> <script src="Scripts/kendo.web.min.js" type="text/javascript"></script> <link href="Content/kendo.common.min.css" rel="stylesheet" type="text/css" /> <link href="Content/kendo.blueopal.min.css" rel="stylesheet" type="text/css" /></head><body> <input id="datetimepicker" value="10/10/2011 12:00 AM" style="width:200px;" /> <script> $(document).ready(function () { // create DateTimePicker from input HTML element $("#datetimepicker").kendoDateTimePicker(); }); </script></body></html>