Extjs 为panel动态添加html页面

Ext.onReady(function(){
    var panle = new Ext.Panel({

        id:'my_panel',
        title: 'My Panel',
         renderTo: document.body,
        html:"test测试"
    });


var p =Ext.getComponent("my_panel");
   p.body.update(获取页面");
 }
});

2.实例测试

  var addTabs = tabpanel.getComponent(addTabsId)
                        if (!addTabs) {
                            tabpanel.add({
                                id: addTabsId,
                                title: text,
                                html: '',
                                height: '100%',
                                layout: 'fit',
                                closable: true,
                                autoload:true
                            });
                        }
                  
                    Ext.Ajax.request({
                        url:'/emr_manage/getemr',
                        success: function(response,options){
                            var p=tabpanel.getComponent(addTabsId)
                            p.body.update(response.responseText)

                        }

返回的response.responseText数据为:

电子系统


你可能感兴趣的:(Extjs4.0)