ExtJS4 工具栏问题

发布于 2024-11-27 05:38:10 字数 172 浏览 2 评论 0原文

我是 ExtJS4 的新手。我有一个疑问,如果我们向工具栏添加按钮,按钮是从左侧排列的。是否可以从右侧添加按钮?

实际上工具栏使用的是框布局,所以我认为我们需要更改 Box.js 中的选项。我尝试了很多方法来获得解决方案。但我无法找到它从左侧指定的位置。任何人都可以帮助我。

如有帮助,将不胜感激。

I am new to ExtJS4.I have one doubt,if we add buttons to toolbar buttons are arranged from left side.Is it possible to add buttons from right side?

Actually toolbar is using box layout so i think we need to change options in Box.js.I tried a lot to get the solution.But i am not able to find where it is specifying from left side.Can anyone please help me.

Help would be appreciated.

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

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

发布评论

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

评论(2

寻找一个思念的角度 2024-12-04 05:38:10

就像那个人说的,拉伸布局 1,2 将位于右侧。

<table width="100%">
<tr><td width="100%"> l;</td><td>1</td><td>2</td</tr>
</table>

Ext.create('Ext.toolbar.Toolbar', {
   ...
   items: [ '->',
            { text: '1' }, 
            { text: '2' } ],
});

Like the man said, with a stretched layout 1,2 will be at the right side.

<table width="100%">
<tr><td width="100%"> l;</td><td>1</td><td>2</td</tr>
</table>

Ext.create('Ext.toolbar.Toolbar', {
   ...
   items: [ '->',
            { text: '1' }, 
            { text: '2' } ],
});
清晨说晚安 2024-12-04 05:38:10

尝试添加“->”在第一个项目之前,该项目应该位于右侧。

Try adding '->' before the first item which should be on the right side.

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