如何扩展ExtJS SplitButton?

发布于 2024-10-17 15:12:57 字数 72 浏览 2 评论 0原文

如何从代码中扩展 ExtJS SplitButton 以查看子项目?

扩展版本 3.1.0

谢谢。

How to expand ExtJS SplitButton, to see sub items, from code?

Ext version 3.1.0

Thanks.

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

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

发布评论

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

评论(2

贱贱哒 2024-10-24 15:12:58

尝试使用 showMenu() 方法来显示菜单项。

sptButt.showMenu();

希望这有帮助。

Try the showMenu() method to display the menu items.

sptButt.showMenu();

Hope this helps.

待天淡蓝洁白时 2024-10-24 15:12:58

这是如何通过单击拆分按钮打开上下文菜单的示例:

{
    xtype: 'splitbutton',
    text: 'This is a split button, no kidding',
    handler: function () {
        this.showMenu();
    }
}

This is an example how to open context menu by clicking on a split button:

{
    xtype: 'splitbutton',
    text: 'This is a split button, no kidding',
    handler: function () {
        this.showMenu();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文