ext.panel.panel设置滚动条
时间: 2023-10-15 20:08:27 浏览: 102
您可以使用Ext JS中的viewport,将您的面板作为该viewport的子组件。然后,您可以将布局类型设置为fit,并设置overflowY属性为"auto"以启用垂直滚动条。例如:
```
Ext.application({
name : 'MyApp',
launch : function() {
Ext.create('Ext.container.Viewport', {
layout: 'fit',
items: [{
xtype: 'panel',
title: 'My Panel',
overflowY: 'auto',
items: [{
// add other components here
}]
}]
});
}
});
```
阅读全文