0

问题是我单击菜单的按钮我看不到弹出窗口,因为它隐藏在“主要内容”后面。我可以使用 Firebugs 检查元素工具看到这一点。

我尝试使用 z-index 样式,但似乎没有帮助..

有没有其他选择或创造性的解决方案来解决这个问题?

        {kind:"FittableColumns", style:"z-index:1;", fit:true, components:[
        {kind:"FittableRows", style:"z-index:1;", fit:true, components:[
            {content:"Main Content",style:"z-index:1;", fit:true},
            {kind: "onyx.Toolbar", style: "height:40px; padding:0px;", components: [
                {kind: "onyx.MenuDecorator", onSelect: "itemSelected", components: [
                    {kind: "onyx.IconButton", src: "assets/menu-icon-bookmark.png"},
                    {kind: "onyx.Menu",style:"z-index:99999;",components: [
                        {components: [
                            {kind: "onyx.IconButton", src: "assets/menu-icon-bookmark.png"},
                            {content: "Bookmarks"} 
                        ]}, 
                        {content: "Favorites"}, 
                        {classes: "onyx-menu-divider"}, 
                        {content: "Recents"}, 
                    ]} 
                ]},  
            ]}

并且代码还在继续,但这不在菜单附近重叠的地方。

提前 Tkx 寻求解决方案。

4

1 回答 1

1

解决了添加这个,并做了奇迹{kind: "onyx.Menu", floating: true, components: [

于 2012-08-01T08:47:06.863 回答