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

ExtJs Fit布局

2017年12月08日 ⁄ 综合 ⁄ 共 145字 ⁄ 字号 评论关闭

Ext.onReady(function() {
			new Ext.Panel({
						renderTo : 'hello',
						title : '容器组件',
						layout : 'fit',
						width : 500,
						height : 100,
						items : [{
									title : '子元素',
									html : '这是子元素中的内容'
								}]
					});
		});

抱歉!评论已关闭.