Search found 10 matches

by cornernote
Thu Sep 07, 2006 10:34 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: FireFox Followscroll Sub Menu Issues
Replies: 5
Views: 5015

If i set the menu to followscroll=1 it seems to work correctly. However this is not what I want. I want the menu to stick to the top of the page so I use position=fixed. When I set this instead of followscroll, thats when I start getting problems.
by cornernote
Thu Sep 07, 2006 9:51 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: FireFox Followscroll Sub Menu Issues
Replies: 5
Views: 5015

UPDATE

The scroll bars do show up - but only when your at the very top of the page. If you scroll down a little bit they dont show up.
by cornernote
Thu Sep 07, 2006 9:25 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: FireFox Followscroll Sub Menu Issues
Replies: 5
Views: 5015

I am using listmenus.js and when I toggle this to false it causes my menus to not become scrollable when they overflow.

I have hacked the listmenus.js a little to force the overflow:

FIND:
_y6+="with(milonic=new menuname('"+_mN+"')){"

REPLACE WITH:
_y6+="with(milonic=new menuname('"+_mN ...
by cornernote
Tue Sep 05, 2006 2:44 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: listmenus & overflow=scroll
Replies: 8
Views: 5618

I am using Version 5.756 with the 2 modifications that I put in above.

The pages I am playing with are extras/listbased_menu/* in the current release.

The 2 things I want to do are:

1. Pass menu properties to sub menus (like overflow and orentation).

2. Open links in a new window instead of the ...
by cornernote
Mon Sep 04, 2006 3:46 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: listmenus & overflow=scroll
Replies: 8
Views: 5618

I want it to apply to the menu under <a href=#>Milonic</a>. The really long one.

I think the main issue is that there is no way to assign properties to the sub-menus. If there is a way then forgive me, I just couldnt figure it out. Perhaps assigning options like this could be possible?
<ul style ...
by cornernote
Mon Sep 04, 2006 3:18 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: listmenus & overflow=scroll
Replies: 8
Views: 5618

Ok - fixed the target...

FIND if(_y4.href.substr(_y4.href.length-1,1)!="#")_y3[_y1][_y3[_y1].length-1]+="url="+_y4+";"

INSERT THIS BELOW
if(_y4.target)_y3[_y1][_y3[_y1].length-1]+="target="+_y4+";"
by cornernote
Mon Sep 04, 2006 3:13 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: listmenus & overflow=scroll
Replies: 8
Views: 5618

also target="_blank" doesnt work in ght <a> tag.
by cornernote
Mon Sep 04, 2006 2:58 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: listmenus & overflow=scroll
Replies: 8
Views: 5618

I want it to apply to the menu under <a href=#>Milonic</a>. The really long one.

I think the main issue is that there is no way to assign properties to the sub-menus. If there is a way then forgive me, I just couldnt figure it out. Perhaps assigning options like this could be possible?
<ul style ...
by cornernote
Mon Sep 04, 2006 12:26 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: listmenus & overflow=scroll
Replies: 8
Views: 5618

Ok - I got it... Just had to hack the JS file a little.

FIND

Code: Select all

                        _y6+="with(milonic=new menuname('"+_mN+"')){"
REPLACE WITH

Code: Select all

                        _y6+="with(milonic=new menuname('"+_mN+"')){ overflow=\"scroll\";"
by cornernote
Mon Sep 04, 2006 8:29 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: listmenus & overflow=scroll
Replies: 8
Views: 5618

listmenus & overflow=scroll

Hello,

I cannot seem to get overflow=scroll to work with listmenus. Here is the code (pretty much straight from the listmenus example). I added overflow='scroll';itemheight='100'; .

<html>
<head>
<title>Milonic DHTML/JavaScript Menu Sample Page</title>
<meta http-equiv="Content-Type" content ...