c# - Kendo menu z-index -


i want have menu on top of other window. seems z-index isn't working. menu:

@(html.kendo().menu()     .name("menu").htmlattributes(new { @style = "z-index: 50;"})     .items(items =>     { 

and dom: enter image description here

this works me, see example.

@(html.kendo().menu()     .htmlattributes(new { style = "position: relative; z-index: 11000" }) )