Hallo,
Is there a way to get a WAComponent to display an external web page? I am talking about something similar to the frame/framesets/target type of behaviour. I.e I have a menu on my left-hand side with some links in it and a blank WAComponent on my right. Most of the time clicking on any of the menu links causes the right-hand side to call a particular component. This component then gets rendered on the right with my menu still visible on the left. Now - Say I would like a link to Google om my menu, how to I get Google to open in the right-hand component with my menu still visible on the left? The pop-up anchor causes a new window to be opened and the normal anchor with url replaces my entire window contents with the webpage referenced by the url. Thanks, Mart-Mari _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Try
to do something like html html: '<iframe src="http://www.google.com"></iframe>'. in your right side component. But i am not sure I understand your needs clearly. -Dmitry. Mart-Mari Breedt wrote: > Hallo, > > Is there a way to get a WAComponent to display an external web page? > > I am talking about something similar to the frame/framesets/target type > of behaviour. I.e I have a menu on my left-hand side with some links in > it and a blank WAComponent on my right. Most of the time clicking on any > of the menu links causes the right-hand side to call a particular > component. This component then gets rendered on the right with my menu > still visible on the left. Now - Say I would like a link to Google om my > menu, how to I get Google to open in the right-hand component with my > menu still visible on the left? The pop-up anchor causes a new window to > be opened and the normal anchor with url replaces my entire window > contents with the webpage referenced by the url. > > Thanks, > > Mart-Mari > > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Mart-Mari Breedt
Hallo Dmitry,
Thanks for your suggestion. I used html html: '<iframe src="http://www.google.com" width=100% height=100% frameborder=0></iframe>' and it does the trick. Kind regards, Mart-Mari -----Original Message----- From: Dmitry Dorofeev [mailto:[hidden email]] Sent: 03 April 2006 01:42 nm To: The Squeak Enterprise Aubergines Server - general discussion. Subject: Re: [Seaside] WAComponent - Render an external page? Try to do something like html html: '<iframe src="http://www.google.com"></iframe>'. in your right side component. But i am not sure I understand your needs clearly. -Dmitry. Mart-Mari Breedt wrote: > Hallo, > > Is there a way to get a WAComponent to display an external web page? > > I am talking about something similar to the frame/framesets/target type > of behaviour. I.e I have a menu on my left-hand side with some links in > it and a blank WAComponent on my right. Most of the time clicking on any > of the menu links causes the right-hand side to call a particular > component. This component then gets rendered on the right with my menu > still visible on the left. Now - Say I would like a link to Google om my > menu, how to I get Google to open in the right-hand component with my > menu still visible on the left? The pop-up anchor causes a new window to > be opened and the normal anchor with url replaces my entire window > contents with the webpage referenced by the url. > > Thanks, > > Mart-Mari > > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |