myTestWindow = new Ext.Window({
title: 'problem demonstration',
height: 400,
width: 500,
layout: 'border',
items:[
level1Panel= new Ext.Panel({
region:'center',
layout: 'border',
items:[
new Ext.Panel({
height: 200,
region: 'north',
html: 'top panel'
}),
new Ext.Panel({
html: 'centerPanel',
region: 'center'
})
]
})
]
});
myTestWindow.show();
level1Panel.body.on('mouseover', function(){alert('this message should only visible on first mouse enter of the level1Panel and not for the childs')})
|