EXT Js 面板调整大小

发布于 2024-09-14 13:02:17 字数 76 浏览 7 评论 0原文

我希望我的 ext js 面板可以调整大小,即当我将鼠标放在面板上时,它必须向

我显示调整大小控件。我该如何做同样的事情?

I want my ext js panel to be resizable, i.e when I put my mouse over the panel it must show

me the resize controls. How do I do the same ?

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

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

发布评论

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

评论(3

耀眼的星火 2024-09-21 13:02:17

使用 Ext.Ressized。检查此链接:
http://docs.sencha.com /ext-js/4-1/#!/example/resizer/basic.html

编辑:链接已更新。

Use Ext.Resizable. Check this link:
http://docs.sencha.com/ext-js/4-1/#!/example/resizer/basic.html

Edit: Link updated.

微凉徒眸意 2024-09-21 13:02:17

通常,您不会调整面板组件的大小,而是调整其中包含的任何内容的大小。

如果面板位于窗口对象中,则调整窗口大小,面板也会随之自动调整大小;除非您专门指定了高度/宽度数字,这会阻止布局管理器处理它。

Typically you don't resize the panel component, you resize whatever it is contained within.

If you have the panel in a window object, you resize the window and the panel will resize with it automatically; unless you have specified height/width figures specifically which disables the layout manager from handling it.

梨涡少年 2024-09-21 13:02:17
    resizable: true, 

面板接受“可调整大小”属性,该属性将在面板周围自动显示 Ext.resizer.Resizer 手柄。

    resizable: true, 

Panels accept a "resizable" attribute that will automatically display Ext.resizer.Resizer handles around the panel.

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