PDA

View Full Version : Ext Desktop: creating a new window from a link? possible...



str0kes
15 Feb 2008, 2:28 AM
Hey guys,

very new to the forums here, only getting to grips with Ext now. I'm looking through the desktop 2.0 examples and code, just wondering if anyone knows how to open a new window from a link in these examples?

Any ideas of how to do so or how to approach the problem would be greatly appreciated, I'm not looking for someone to write it for me or anything, just a point in the right direction... perhaps its only a few lines of code? No idea here...

Many thanks...

madrabaz
15 Feb 2008, 4:25 AM
Ext.get('linkId').on('click',function(){
var win = new Ext.Window({...});
win.show();
});