-
16 Oct 2006 10:26 AM #1
iframe again....
iframe again....
Hi again from here...
sorry for try but a have do it this....
i need remplace my iframe whit something else, can you to suggest me wich ? ? ?
i think the container but can you explaime how ?
i mind to url=?? or how? how is the implementation of container, but example the wait div, etc
do you understand me???
tnks very much
-
16 Oct 2006 11:50 AM #2
The best way is using a simple div element + UpdateManager. Suppose you div container element has the id "container":
You can also intercept clicks on links in the container element and use the UpdateManager to load the URL:Code:var div = getEl('container'); div.getUpdateManager.update('yourfile.php');
You can do a similar override with forms.Code:var div = getEl('container'); function handleClick(e){ var link = e.findTarget(null, 'a'); if(link && link.getAttribute('href')){ div.getUpdateManager().update(link.getAttribute('href')); e.stopEvent(); } } div.mon('click', handleClick);
Similar Threads
-
Reloading an iframe
By naveen in forum Ext 1.x: Help & DiscussionReplies: 9Last Post: 26 Feb 2007, 11:00 PM -
iframe to contentpanel
By franks in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 19 Feb 2007, 3:41 AM -
IFRAME on Dialog
By gmoney in forum Ext 1.x: Help & DiscussionReplies: 3Last Post: 8 Feb 2007, 7:36 AM -
Div vs IFrame
By techno_adi in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 7 Nov 2006, 3:03 PM -
IFRAME
By genius551v in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 30 Sep 2006, 7:38 AM


Reply With Quote