Re: Speed issue + Right aligned time
2006/11/14 18:23
Viewed 3190 times
Replies: 0/0
by nima

I also want to know this.
How can you put one menu othe the right side while the others are in the left side.

last
Multiple Styles
2006/10/12 23:43
Viewed 2284 times
Replies: 1/5

I'd like to use one style as the default for menus (longhorn), and then use another style (say, modern) for a specific menu or toolbar menu. How can I do that?

Also, the longhorn style is messed up when using it in a toolbar.

last
Re: Multiple Styles
2006/10/13 12:29
Viewed 3557 times
Replies: 2/4

You can use this sample as a start.  However, note that it won't be easy to use multiple standard skins in the same page; the official skins are designed to take over the look of all popups/items in the page...

What you need is creating a custom look that applies only to a certain class name, and then add that class name to specific popups or menus by simply adding class="your-class-name" to the respective <ul> or <li> elements.

We'll try to make things easier in a next release.

Sorry about the Longhorn skin.  I know that not all skins are suitable for being used as a toolbar.

last
Combination Button/Menu
2006/10/17 22:51
Viewed 2490 times
Replies: 0/0

OK, one feature that is really needed, in particular if you are doing toolbars, is support for the combined button/menu thing. For example, in MS Outlook there is a Send/Receive button. When you click it, it works as a button, but if you click the down arrow on the right (I'd like to be able to choose the left), it is a menu. We can do this now, of course, only that the two down hover together, and have that UI that people know means that they are together.

http://www.ozonline.com.au/image/windows/outlook/toolbar/sendreceive.gif

last
No Hover on an item in a menubar or toolbar
2006/10/18 03:03
Viewed 2718 times
Replies: 0/0

How can I get an item to not have the hover effect?

I tried adding a class called nohover to the item in question, and adding this to the end of the longhorn theme, but it doesn't work (does show the test red outline either):

div.dynarch-horiz-menu table tr td.nohover { background:; border-color: red; }

last
context-menu parameters
2006/10/19 13:32
Viewed 2588 times
Replies: 0/0

Hi,

I have a question regarding context menus.
I want for each TR in a table to have something like this:

oncontextmenu="show_menu(param1, param2)"

And in show_menu function to be called the DynarchMenu (as a context menu). Depending on the params I will add/delete/enable/disable menu items.

Is this possible?

Thanks

last
How do I open a menu from JS?
2006/10/21 05:44
Viewed 2751 times
Replies: 0/0

How do I open a menu from JS? I'd like a help are to automatically open a menu and select an item as if I clicked the menu and used the arrow key to select the item. How can I do this?

Thanks in advance!

last
DynarchMenu is not defined
2006/10/26 03:52
Viewed 2676 times
Replies: 0/0

I don't wait for the onload event to fire before I call the Dynarch setup call -- I do it inline after the elements are defined so that there isn't page jumping while the browser deals the change in height and width. Since the script is loaded first, DynarchMenu should already be defined. Yet, about 5% of the time I get the error. Its driving me nuts. And it only seems to be happening in FF2. http://v3.network54.com/

last
Page load issues
2006/11/10 22:12
Viewed 2344 times
Replies: 0/0
by RA

Hi. I love this menu. It works beautifully and was easy to customize. However, I'm getting an issue with page loads. On initial load, my content is pushed to the bottom of the screen, and then pops into place after a fraction of a second (on high speed access, takes a few seconds on low bandwidth to pop into place). Is this an issue with the code <ul id="menu" style="visibility: hidden">? It appears the amount of space my body content is pushed down equals the space the menu occupies when I view the page in "Design" mode in Dreamweaver.

How can I fix this page load issue?

Much respect and appreciation in advance for your help,
--Robin.

last
Event problem in Firefox for OSX
2006/11/23 15:37
Viewed 2342 times
Replies: 1/3

We use DynarchMenu in a searchresult table with multiple selection implemented, (ctrl-clicks enables multiple selection). Works fine in FF and IE for win32, but on MacOSX DynarchMenu seems to hijack the ctrl-click, as well as command-clicks, and there it stays. So, no multiple selection for OSX...

Is there any way to avoid that DynarchMenu is triggered by ctrl-clicks and/or command-clicks in FF for OSX?

last
Re: Event problem in Firefox for OSX
2006/11/23 16:47
Viewed 3531 times
Replies: 1/2

I'm afraid it's an operating system problem, rather than a browser or DynarchMenu problem. Mac OS X triggers the context menu upon CTRL+click (probably because Macintoshes traditionally come with a single-button mouse). As far as I know, there's no way we can avoid this.

last
Changing the menu title
2006/12/12 21:52
Viewed 2237 times
Replies: 1/2

Hi,

I am trying to make the HMenu mimic dropdown (SELECT element) behaviour. The client has asked for it to appear as a dropdown menu, but which supports hierarchical submenus.
This is reasonably easy in terms of giving it the same UI etc, but when I select an item in the list, the menu title needs to change so that users can see what they've selected.

Changing the original A element which provided the title does not change the menu title, which is predictable since the menu has already been generated from the source HTML.  Is there an exposed method or hack which will allow me to change this title?

Thanks,

Giles

last
Re: Changing the menu title
2006/12/18 12:38
Viewed 3280 times
Replies: 1/1

Take a look at our toolbar sample, it does exactly that in the font or font size menus.

The idea is to get a reference to the menu item and use setLabel:

var item = menu.items["item-id"];
item.setLabel("whatever");

last
Google