如何将此按钮对齐到屏幕右侧?

发布于 2024-12-06 17:10:11 字数 696 浏览 0 评论 0原文

我尝试将 style: float: right 添加到按钮,但它不起作用。

myapp.cards.home.add({
         xtype: 'button',
         id: 'previmagebutton',
         // text: 'p',
         iconCls: 'arrow_left',
         iconMask: true,
         style: 'float: right'

     });


  myapp.cards.home = new Ext.Panel({
        scroll: 'vertical',
        id: "home-card",
        layout:{
            type:"vbox",
                            align:"center"

        },
        items: [header]
    }); 

  myapp.mainPanel = new Ext.Panel({
        fullscreen: true,
        layout: "card",
        cardAnimation: 'slide',
        items: [myapp.cards.home]
    });

如果这就是导致问题的原因,我必须使用 add 方法。非常感谢。

I've tried adding style: float: right to the button but it isn't working.

myapp.cards.home.add({
         xtype: 'button',
         id: 'previmagebutton',
         // text: 'p',
         iconCls: 'arrow_left',
         iconMask: true,
         style: 'float: right'

     });


  myapp.cards.home = new Ext.Panel({
        scroll: 'vertical',
        id: "home-card",
        layout:{
            type:"vbox",
                            align:"center"

        },
        items: [header]
    }); 

  myapp.mainPanel = new Ext.Panel({
        fullscreen: true,
        layout: "card",
        cardAnimation: 'slide',
        items: [myapp.cards.home]
    });

I have to use the add method if that is what's causing the problem. Many thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

就是爱搞怪 2024-12-13 17:10:11

在您的 myapp.cards.home 对象中,您将布局设置为 align:"center"

In your myapp.cards.home object you have the layout set up to align:"center".

苦妄 2024-12-13 17:10:11

我已经通过使用

    floating:true

按钮上的配置成功创建了一个浮动按钮。由于是私人会员,所以还在寻找官方的方式。

I've succeeded in creating a floating button by using

    floating:true

config on the button. It is a private member, so I'm still looking for an official way.

风筝有风,海豚有海 2024-12-13 17:10:11

这应该可以工作::

layout : {
    type : 'vbox',
    align : 'left'
}

或者您可以添加一个spacer(如果它在工具栏中),或者如果您拉伸元素,然后添加另一个hbox元素在其一侧有一个flex,它占据了您不需要的空间

This should work ::

layout : {
    type : 'vbox',
    align : 'left'
}

or you can add a spacer if its in the toolbar, or if you stretch the element, then add another hbox element on its side with a flex that occupies as much space that you don't need

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文