ext中 面板怎么加入表格的问题
ext中 面板怎么加入表格的问题
如何在面板中加入表格呢 我只会单一的表格布局 刚学很多问题 还请各位老大赐教!
Ext.onReady(function() {  
	      
		    var productPanel = new Ext.Panel({  
		                title : '    模块 1   ',  
		                //layout : 'fit',  
		                id:'productPanel',  
		                defaults : {  
		                    // applied to each contained panel  
		                    bodyStyle : 'padding:0px'  
		                },  
		                layout: {  
		                    type: 'accordion',  
		                    animate: true  
		                },   
		                items : [{  //
就像在这个里面放进一个表格!
		                            title : '水质部分',  
		                            html: '<a href="http://www.baidu.com" target="ifrMID">这是一个超链接</a>'
		                        }]
		            });  
            
		    var systemconfPanel= new Ext.Panel({