How do I get the sub-menus to open in the 2nd frame in the dhtml menu frame?
Return to Recent Questions
Q:
How do I get the sub-menus to open in the 2nd frame of a 3 vertical
frameset.
The menu is in the first frame. I want the sub-menus to open in the 2nd
frame. I don't see how to set that parameter.
A:
You should check your dm_initFrame() function.
dm_initFrame(framesetID, mainFrameInd, subFrameInd, orientation);
framesetID - id attribute of the frameset;
mainFrameInd - index of the main frame (where the top-menu is placed), >=0;
subFrameInd - index of the subframe (where the submenus will be shown), >=0;
orientation - frame orientaion: 0 - horizontal, 1 - vertical.
You should write it, for example
dm_initFrame("frmSet", 0, 1, 0);
Return to Recent Questions
|