4 Answers, 1 is accepted
0
Hello Matjaž,
You can overwrite the default Kendo UI styles like this:
http://dojo.telerik.com/OyEDEC
I hope this helps.
Regards,
Dimiter Topalov
Telerik by Progress
You can overwrite the default Kendo UI styles like this:
.k-overlay {
z-index: 100000 !important;
}
.k-widget.k-window {
z-index: 100001 !important;
}
http://dojo.telerik.com/OyEDEC
I hope this helps.
Regards,
Dimiter Topalov
Telerik by Progress
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.
0
Seyfor
Top achievements
Rank 1
answered on 13 Sep 2016, 07:59 AM
No, it does not since I need this only for modal windows.
0
Seyfor
Top achievements
Rank 1
answered on 13 Sep 2016, 08:17 AM
I found solution in adding code to toFront method:
toFront:
function
(e) {
var
that =
this
, wrapper = that.wrapper, ...
if
(
this
.options.modal ===
true
)
zIndex += 100000;
But I would really like to see kendo solution, since modifying source code is the worst solution if you regularly update sources.
0
Hello Matjaž,
You can use the following selector to apply CSS rules only to a modal window:
Regards,
Magdalena
Telerik by Progress
You can use the following selector to apply CSS rules only to a modal window:
.k-overlay,
.k-overlay + .k-window {
z-index
:
100000;
}
Regards,
Magdalena
Telerik by Progress
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.