-
6 Apr 2010 1:55 AM #11
-
6 Apr 2010 1:56 AM #12
var w = new Ext.ux.PopupWindow({
url : 'www.google.com',
//height : 500,
//width : 650,
maximized :true,
id : 'win1',
title : 'Google',
modal : true
});
w.show();
-
6 Apr 2010 1:57 AM #13
Code:var w = new Ext.ux.PopupWindow({ url : 'www.google.com', //height : 500, //width : 650, maximized:true, id : 'win1', title : 'Google', modal : true }); w.show();
-
6 Apr 2010 2:51 AM #14
Or, alternatively, with no overcomplicated new class:
Code:new Ext.Window({ bodyCfg: { tag: 'iframe', src: 'http://www.google.com/', style: 'border: 0 none' }, height : 500, width : 650, title : 'Google', modal : true }).show();Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
6 Apr 2010 3:37 AM #15
yes it works
yes it works
thankyou for your quick reply muratyildiz,
it is works..
also i try what animal suggested, and it is also
works..
i use it..
thankyou, coffe for all..


-
6 Apr 2010 4:37 AM #16
the more you know the easier the code

It's worth to build your own components to learn how it works, it's good that animal show the way how simple it could be. That's effort of community!vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
1 Apr 2011 7:28 PM #17
wow great, this was i looking for...





Reply With Quote