问题描述
- extjs中create一个window,里面一个panel加html然后加入buttons就报错了。
-
extjs中create一个window,里面一个panel加html然后加入buttons就报错了。代码如:
createMapWindows: function() {
this.mapWin = Ext.create('Ext.window.Window', {
title: '点击获取地理位置',
height: 550,
width: 700,
layout: 'auto',
modal: true,
closeAction : 'hide',
items: [{
xtype: 'panel',
html : "",
buttons: [{
text: 'Button 1'
}]
}]
});
},报错信息:Uncaught TypeError: Cannot read property 'dom' of null
时间: 2024-12-31 15:32:37