All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Hello Morten,
The Window utilizes the specified z-index(10003) internally and applies it to the wrapper element. In case you would like to modify it, you can do so via JS as follows:
<script> $(document).ready(function() { $(".k-window").each(function(i, elem){ $(elem).css("z-index", 500000); }); }); </script>
or via CSS:
<style> .k-overlay { z-index: 100000 !important; } .k-widget.k-window { z-index: 100001 !important; } </style>
Regards, Dimitar Progress Telerik