I have two separate applications and I would like to integrate them. I'm trying to use a button click event to load a url where my second application is into a basic panel. I found this post on the subject:
http://www.learnsomethings.com/2010/...xecute-script/
but I cant get it to work. I don't see a "autoLoad" config option or "load" method in the sencha panel documentation..
I've tried a different method using jquery:
where I have a panel with id 'thepanel' and I want to load the yahoo home page in it when I run this code. I can see the yahoo div added to the thepanel div using firebug but nothing shows up.Code:var div = document.getElementById('thepanel'); div.innerHTML = "<iframe src=\"http://www.yahoo.com\"></iframe>";
Is this even possible?