我正在尝试在其他预先创建的面板上创建一个浮动面板,我尝试遵循简单的代码,但失败了:
var testPanel = new Ext.Panel({
id: 'testP',
width: 50,
height: 100,
floating: true,
title:'Test'
});
testPanel.show();
我还需要考虑什么?
谢谢!