I want to modify two frames at once ie in my side bar I have some links sidebar | Body A | page A B | C | I would like link B to modify the side bar and at the same time move the main body frame to a new location B1 ie sidebar | Body A | page B1 B | B1 | B2 | B3 | C | do I have to go into JScript to do this or is there some neat way to do it? -- Robin Becker
I would think the JavaScript is your only answer, you could create a function that loads both frames, e.g. All untested, ;) function doit(f1,f2){ frame1.url=f1; frame2.url=f2; } and then create ;links sort of like this: <a href="javascript:doit('page1_dtml','page2_dtml')">Do It</a> HTH Phil phil@philh.org ----- Original Message ----- From: Robin Becker <robin@jessikat.demon.co.uk> To: <zope@zope.org> Sent: Friday, September 10, 1999 11:24 AM Subject: [Zope] two things at once
I want to modify two frames at once
ie in my side bar I have some links
sidebar | Body A | page A B | C |
I would like link B to modify the side bar and at the same time move the main body frame to a new location B1
ie
sidebar | Body A | page B1 B | B1 | B2 | B3 | C |
do I have to go into JScript to do this or is there some neat way to do it? -- Robin Becker
_______________________________________________ Zope maillist - Zope@zope.org http://www.zope.org/mailman/listinfo/zope
(To receive general Zope announcements, see: http://www.zope.org/mailman/listinfo/zope-announce
For developer-specific issues, zope-dev@zope.org - http://www.zope.org/mailman/listinfo/zope-dev )
At 12:24 10/09/99 , Robin Becker wrote:
I want to modify two frames at once
ie in my side bar I have some links
sidebar | Body A | page A B | C |
I would like link B to modify the side bar and at the same time move the main body frame to a new location B1
ie
sidebar | Body A | page B1 B | B1 | B2 | B3 | C |
Zope doesn't provide any new special tricks for the client side. You'll have to use JScript here. -- Martijn Pieters, Web Developer | Antraciet http://www.antraciet.nl | Tel: +31-35-7502100 Fax: +31-35-7502111 | mailto:mj@antraciet.nl http://www.antraciet.nl/~mj | PGP: http://wwwkeys.nl.pgp.net:11371/pks/lookup?op=get&search=0xA8A32149 ------------------------------------------
participants (3)
-
Martijn Pieters -
Phil Harris -
Robin Becker