现在的位置: 首页 > 综合 > 正文

ExtJs Column布局

2018年07月13日 ⁄ 综合 ⁄ 共 224字 ⁄ 字号 评论关闭

Ext.onReady(function() {
			new Ext.Panel({
						renderTo : 'hello',
						title : '容器组件',
						layout : 'column',
						width : 500,
						height : 100,
						items : [{
									title : '列1',
									width : 200
								}, {
									title : '列2',
									columnWidth : .3
								}, {
									title : '列3',
									columnWidth : .3
								}, {
									title : '列4',
									columnWidth : .4
								}]
					});
		});

抱歉!评论已关闭.