日期:2014-05-16  浏览次数:20704 次

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">这是一个超链接</a>' //这个点了以后页面会出现在中间面板上
                        }]
            });  
            
    var systemconfPanel= new Ext.Panel({