I'm hoping that someone can help me with this as I have a hit a brick wall in 'trying' different things.
We are testing out the Milonic menu to ensure that it will suit our needs. One thing I need to do is hook an event on to the 'click' action of the menu. Throughout our app we utilize a package ...
Search found 6 matches
- Thu May 13, 2004 12:51 am
- Forum: Help & Support for DHTML Menu Version 5+
- Topic: onclick not working
- Replies: 1
- Views: 1976
- Wed May 12, 2004 4:28 am
- Forum: Help & Support for DHTML Menu Version 5+
- Topic: added attributes
- Replies: 1
- Views: 2037
added attributes
Is there a way with the menu to add custom attributes to each menu item. To give you some background, we are overriding the onclick event on each menu item so that we can control what type of window opens and the size of said window. But we add those attributes to each menuItem so that we can grab ...
- Thu May 06, 2004 7:44 pm
- Forum: Help & Support for DHTML Menu Version 5+
- Topic: Problems hiding/displaying the menu
- Replies: 4
- Views: 3841
doh!
Well I finally got it! I am such a doofus sometimes! It takes stepping away from the code to realize what you are doing. Once the variable is changed to position 7, everything does work as stated....it just helps if you call the proper menu!
So now that's figured out!
So now that's figured out!
- Thu May 06, 2004 7:18 pm
- Forum: Help & Support for DHTML Menu Version 5+
- Topic: Problems hiding/displaying the menu
- Replies: 4
- Views: 3841
Fixed the first problem
I fixed the first problem of the attribute number on the array for the alwaysvisible flag, it is actually at position 7, not position 8. But that still doesn't seem to fix my problem.
- Thu May 06, 2004 7:06 pm
- Forum: Help & Support for DHTML Menu Version 5+
- Topic: Problems hiding/displaying the menu
- Replies: 4
- Views: 3841
Problems hiding/displaying the menu
function mm_showMenu(menuName) {
if (arguments.length > 1) _m[getMenuByName(menuName)][8] = arguments[1];
popup(menuName);
}
function mm_hideMenu(menuName) {
var menuNum = getMenuByName(menuName);
if (arguments.length > 1) {
_m[menuNum][8] = arguments[1];
}
menuDisplay(menuNum, 0 ...
- Thu May 06, 2004 5:47 pm
- Forum: Help & Support for DHTML Menu Version 5+
- Topic: getting a menu to display via a function
- Replies: 7
- Views: 5874
Same thing
I have actually been having somewhat of the same problem and after running through the debugger, the only thing that I found, was that when I used menuDisplay to try and hide it, no matter what when it gets to the line checking for visibility in I believe mmenudom.js it says that the menu ( or div ...