Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: formatting

...

Here's an example of how you can set up your frames:

Code Block
html
html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
{panel}
  "http://www.w3.org/TR/html4/frameset.dtd">
{panel}
<HTML>
  <HEAD>
    <TITLE>A simple frameset document</TITLE>
  </HEAD>
  <FRAMESET cols="20%, 80%">
{panel}
    <FRAMESET rows="100, 200">
      <FRAME src="myapp?pagemap=leftframe&bookmarkablePage=mypackage.MyNavigationPage">
      <FRAME src="myapp?bookmarkablePage=mypackage.MyMainPage">
    </FRAMESET>
    <FRAME src="myapp?pagemap=bottomframe&bookmarkablePage=mypackage.MyStatusBarPage">
{panel}
  </FRAMESET>
</HTML>

That's it. Page maps are created automatically, and all links etc of a page that was created for a certain page map will keep on refering that page map.

Note that if you make heavy use of popup windows, this strategy could be usefull useful as well.