Recent Questions
Q: I can't get the popup menu sample (rightclick) to work in Opera. Does Deluxe-menu support opera for right-clicking?
Does Deluxe-menu have a gwt wrapper so we can use deluxe-menu as part of a GWT application?
A: Unfortunately, Opera doesn't support onContextMenu event.
More info you can find, for example, here:
http://lab.artlung.com/oncontextmenu/
Deluxe Menu wasn't developed as Google Web Toolkit extension,BUT you can use it as standard Javascript files.
To create and configure your menus use Deluxe Tuner application(included into the trial package):
http://deluxe-menu.com/deluxe-tuner-info.html
Please, try the trial version.
Q: We just bought your product suite including deluxe tabs control. For some reason that the tabs onload is not working in IE 7 only. It works in IE 6 and FF, Chrome and Safari. Attached is the sample page which will show the problem. I also attached our receipt of order for your reference.
Pleae help me to figure out what is the problem with my code ASAP.
A: Try to set exact height for your content DIV. Change height:0%; to height:200px;
<div id="content1" style="height: 200px; visibility: hidden;" class="tabPage">
<div id="content1" style="height:0%; visibility: hidden;" class="tabPage">
Q: Is this possible to make the background of item in a free dhtml menu fully transparent sothat the page below it is fully visible.
A: Yes, it is possible.
You can set the following parameter:
var menuBackColor="transparent";
Q: I'm trying to evaluate the possiblity of using your menu in our product. Can we specify our own onclick event handler for the menu item?
A: You're able to use Javascript for each item, for example:
var menuitems = [
["item text", "javascript:your_code_here"]
];
Unfortunately, you can't assign onmouseover/onClick event to each item.
However, you can achieve this by using standard html objects within items, for example:
var menuitems = [
["<div onClick='your_code_here'>item text</div>", "index.html"]
];