Re: Lazy loading and links
2005/04/29 17:11
Viewed 9484 times
Replies: 0/0
by tbo

Using the single site version, I have the same problem.
I'm placing my links like this:
<li><a href="/toerisme/brochures/nl">Brochures</a></li>
When I click on it, in IE i go to "about:blank/toerisme/brochures/nl" when the menu is in lazy mode, when it's not, then i go to http://www.mysite.com/toerisme/brochures/nl
It works great in firefox btw.
I need to place the links relative because when the user doesn't accept session_cookies, PHP only will add the SID to the relative urls.

last
pricing & support questions
2005/01/27 00:00
Viewed 5224 times
Replies: 1/1

two questions: one, if menu is purchased as a single user, can it be upgraded to another level in the future for the price difference?

also, is there a way to a) popup up a menu item (e.g. one containing a div) programmatically/from within code? & b) make it sticky (i.e., it doesn't go away when the mouse moves out, but closure is controlled through code)...if not, any ideas on if/when these features would be implemented?

thanks....

last
Re: pricing & support questions
2005/01/27 04:39
Viewed 7145 times
Replies: 0/0

two questions: one, if menu is purchased as a single user, can it be upgraded to another level in the future for the price difference?

Currently, not.  Not automated, anyway.  But you can contact us and we can arrange for manual payment.  Note that it will invalidate your previous license.

also, is there a way to a) popup up a menu item (e.g. one containing a div) programmatically/from within code?

Not at this time.

b) make it sticky (i.e., it doesn't go away when the mouse moves out, but closure is controlled through code)

Context menus can be sticky (actually it's recommended).  Just don't pass “electric: true

last
2 questions
2005/01/29 19:18
Viewed 5012 times
Replies: 1/1
Hi, like everyone else have already said, this has gotten to be the best dhtml menu so far I've seen or used. Ok, so I'm using the trial version right now and I have two questions: 1. Does the menu support frames? I know someone has asked the question before, but it wasn't addressed and I would love to know. 2. How can one implement the "Loading please wait..." notice that is used on dynarch? Thank u and once again, respect!
last
Re: 2 questions
2005/01/29 20:24
Viewed 6870 times
Replies: 0/0

Hi, like everyone else have already said, this has gotten to be the best dhtml menu so far I've seen or used.

Cool :) We thought the same too.

1. Does the menu support frames?

Not quite.  But there is a sample about IFRAME-s that you might be interested in.  See examples/iframe.html from the trial package.

We strongly believe that frames (as in a frameset) are bad for many reasons including accessibility, search engine optimization, etc.

2. How can one implement the "Loading please wait..." notice that is used on dynarch?

Well, just add style="display: none" to the UL that defines the menu, include a DIV containing the text "loading please wait" just before it and set that DIV's display style to “none” from JavaScript right after calling DynarchMenu.setup in your page onload handler.  Hope this answers the quesiont. 8-)

last
Assign a context menu to a dynamically created HTML element
2005/02/03 11:20
Viewed 5788 times
Replies: 1/6
by cclc

Hi

I have the following situation: I have a kind of HTML grid that is a table where the user can add or remove rows by pressing some icons associated to each row. I would like to replace the icons with a context menu containing the add/remove row operations. The problem is this one: it's not possible to use DynarchMenu.setup method to assign the context menu to each table row because they are created on user action (using JavaScript), so treating the document onload does affect only the initial rows of the table. I tried to call DynarchMenu.setup after each row creation, but it seems the <ul> element containing the menu definition is not anymore in the current document (it was removed by the DynarchMenu.setup called after the docuement was loaded). Then I proceeded to inspect the DOM structure of the document trying to find what "changes" were perfomed over the elements associated with the context menu. I found oncontextmenu, onclick and __msh_info2 properties assigned to the elements I was interested in. Then it was no problem to assign the context menu to the newly created elements by simply copying the 3 properties from the initially created elements. But I don't like this solution and I'm asking if there is no other way (an API) to "assign" a context menu to a dynamically created HTML element.

Thanks in advance!

last
Re: Assign a context menu to a dynamically created HTML element
2005/02/03 15:24
Viewed 7757 times
Replies: 1/5

Well, for now the solution that you found is best. There's another possible workaround--clone the UL element that defines the menu before calling "DynarchMenu.setup(...)" and you can reuse it later. You can clone it with, say, "var clone = document.getElementById("menu").clone(true)" and on subsequent requests call "DynarchMenu.setup(clone)".

We will create a simpler API in the future.

last
target="_blank" not working
2005/02/16 00:24
Viewed 5719 times
Replies: 1/3

Hi,

I am trying to get a menu link to open in a new window using code:

<li class="plainnav"><a href="http://xxxx" target="_blank" title="Opens in a new window">xxxx</a></li>

This works fine in Firefox but IE (WinXp, SP2) just opens the link in the current window.

Do you have any tips?

Thank you!

Andrew

last
Re: target=
2005/02/21 20:12
Viewed 10012 times
Replies: 1/2

This might be because of the new security restrictions that SP2 introduced; does it happen on other versions of Internet Explorer? If so--it's a bug and please let me know.

last
» Re[2]: target=, by andrewstevens [ quick view ]
» Re[3]: target=, by mishoo [ quick view ]
config className
2005/02/16 10:05
Viewed 5088 times
Replies: 1/2

Great control!

I was wondering if you could help me with trying to set up two menus on the same page. I have been able to get the menus running fine but now I want the menus to have different appearances. I am trying to use the config variable className to set the second menus stylesheet class to a unique name. How do I then set up the style sheet to us this name? Is there an example?

I also noticed that the skins.html example on your site does not seem to work for me. i.e. the "Open" item should be green but it has the normal brown color when I view it. (I am using version 2.4).

Thanks again, really nice job, Rob Reiss

last
Re: config className
2005/02/18 03:54
Viewed 7235 times
Replies: 1/1

After buying the control and looking at the source I was able to figure it out (it was pretty simple, I just didn't fully understand how css worked).

If you want to have two menu's with different styles call setup twice with one of the calls setting the className config variable:
DynarchMenu.setup('menu'); DynarchMenu.setup('menu2', {className: 'menu2class'}

Then in your skin-menu-xxx.css file you can then change the style of the second menu by statements like:
div.menu2class
{
background-color: #00FFCC;
}
div.menu2class table tr td.active
{
background-color: #FF0000;
color: #800040;
} etc.

Thanks again... best menu control I have seen.

last
two problems
2005/02/17 16:10
Viewed 5258 times
Replies: 1/2

Hi,

I'm trying to use dynarchmenu in a intranet site (evaluation version).
My goal is to substitute actual menu to hmenu.
I have two problems:

1) dynarch directory is located into /menu/hmenu (var _dynarch_menu_url = "/menu/hmenu/";)
I found into error_log (apache logs) this error:
/hmenu/img/shadow.png not found

2) I'm using dynarch menu into a site with 2 frames (eg: "logo" e "main"). "main" is the frame that contain menu.
If I click to a link that reload the whole page (container + 2 frames), IE6 show these errors:
row 17: method or property not supported by the object
row 2: authorization denied
row 66: method or property not supported by the object
If I reload the single "main" frame, menu works well.

Any solutions ?
Thanks in advance

last
Google