EXT Js 面板调整大小
我希望我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 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.
通常,您不会调整面板组件的大小,而是调整其中包含的任何内容的大小。
如果面板位于窗口对象中,则调整窗口大小,面板也会随之自动调整大小;除非您专门指定了高度/宽度数字,这会阻止布局管理器处理它。
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.
面板接受“可调整大小”属性,该属性将在面板周围自动显示 Ext.resizer.Resizer 手柄。
Panels accept a "resizable" attribute that will automatically display Ext.resizer.Resizer handles around the panel.