[Zope] two things at once
Phil Harris
phil@philh.org
Fri, 10 Sep 1999 11:33:41 +0100
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 )
>