Ext.onReady(function() {
var win = new Ext.Window({
title: "table Layout",
height: 210,
width: 290,
plain: true,
bodyStyle: 'padding:15px',
layout: 'table',
layoutConfig: {
columns: 3
},
defaults:{width:80,height:50},
items:
[
{ html: '1,1(rowspan=3)', rowspan: 3 ,height:150},
{ html: '1,2'},
{ html: '1,3' },
{ html: '2,2(colspan=2)', colspan: 2, width: 160 },
{ html: '3,2' },
{ html: '3,3' }
]
});
win.show();
});
ExtJs的table布局
最新推荐文章于 2021-06-18 05:19:35 发布