EXTJS 扩展窗口滚动
我的页面中有几个弹出框,基本上都是 ext.window。我试图为它们设置 autoScroll:true 但它不显示滚动条。这是其中一个弹出窗口的代码。请告诉我我做错了什么
windowTerms = new Ext.Window({
autoWidth: true,
autoHeight: true,
header: false,
closable: false,
modal: false,
autoScroll: true,
frame: false,
border: false,
html: html
}); windowTerms.show();
}
function window_termspopClose() {
windowTerms.hide();
}
I have a couple of pop up boxes in my page which are basically ext.window. I am trying to set autoScroll:true for them but it doesnt show the scroll bars. Here is the code for one of the pop up's. Please tell me what I am doing wrong
windowTerms = new Ext.Window({
autoWidth: true,
autoHeight: true,
header: false,
closable: false,
modal: false,
autoScroll: true,
frame: false,
border: false,
html: html
}); windowTerms.show();
}
function window_termspopClose() {
windowTerms.hide();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试提供窗口的高度和宽度。
Try providing a height and width to the window.