(30)ExtJS之Panel面板锚定位中的偏移值定位

Ext.onReady(function(){
	Ext.create('Ext.panel.Panel',{
		layout:'anchor',
		title:'Ext.layout.container.Anchor布局示例',
		frame:false,
		height:150,
		width:300,
		renderTo:Ext.getBody(),
		defaults:{
			bodyStyle:'background-color:#FFFFFF;padding:15px'//设置面板体的背景色
		},
		items:[{
			anchor:'-10 -10',//设置子面板的宽高偏移父面板10像素
			title:'子面板'
		}]
		
	});
	
});

你可能感兴趣的:((30)ExtJS之Panel面板锚定位中的偏移值定位)