I am trying to create a floating panel over other pre-created panels, I tried following simple codes, but failed:
var testPanel = new Ext.Panel({
id: 'testP',
width: 50,
height: 100,
floating: true,
title:'Test'
});
testPanel.show();
what else I need to think about?
thanks!