alangb
Newbie
Posts: 1
Registered: 8/6/2006
Location: UK
Member Is Offline
|
| posted on 8/6/2006 at 12:02 PM |
|
|
Frames declaration
Has any one managed to decipher the documentation to get the menus to drop down when using a three frame layout... topFrame at top, leftFrame and
mainFrame besides each other underneath? I need menus to drop down from the topFrame into the mainFrame and thisis driving me mad!
Help is much appreciated.
|
|
|
spw
Member
Posts: 44
Registered: 12/8/2005
Location: Australia
Member Is Offline
|
| posted on 11/29/2006 at 10:06 PM |
|
|
Check the documentation for the declarations that you should use - i found that in most cases the problems was with including the correct code in all
the component bits of code.
Sounds like you should be using
var MENU_FRAMES = [
['topFrame'],
[leftFrame', 'rightframe']
]
Also note that the added code should be
<script language="JavaScript">
menu (MENU_ITEMS, MENU_TPL);
</script>
NOT
<script language="JavaScript">
menu (MENU_ITEMS, MENU_POS);
</script>
When in doubt log a support ticket but attach your code - that way the supprt is much more helpful and responsive.
|
|
|