Recent Questions
Q: We have a question from one of our clients,
"Is it possible that the open menu items are closed when another menu item with submenu 's is chosen."
A: Yes, it is possible.
You should set the following parameter:
var tcloseExpandedXP=1;
Q: Is there a way to programmatically close a hover popup via javascript?
A: You can close the popup using the following function:document.getElementById('win').hide();
Unfortunately it won't work if you use iframe as window content.
You open another page in the popup (in Iframe) so you cannot access
document.getElementById('win').hide();
element which is situated on the first page.
When you use text or object_id as window content the content of the popup will be situated
on the same page so you can access document.getElementById('win') element and hide it.
There is a workaround for Iframe.
Use text as content type and add the following code inside popup:
<a onclick="document.getElementById('win').hide();">...</a> <iframe></iframe>Q: I purchased the most recent version of "Deluxe Menu & Tree & Tabs & Window Multiple Website License", and now can't open menus from previous versions. When I try to open a custom drop down menu that was created in an older version, I get the error:
Can't open the file:
c:\webs\ltron\ltronmenudata.js
Check youre encode parameter
This happens on all of the older menus that we're trying to update............Do I have to run some type of conversion program on older menu files?
Please let me know as quickly as possible.........we have over 100 custom drop down menus out there and now it seems that we can't edit them!
A: This message means that you should change the encoding:
"Tools/Use utf8 encode"
Change this setting and then open your data files.
Q: I love your product! I used it to create our top level navigation for the initial re-launch of our site in October and am now using Delux-tree to create a left navbar for a secondupdate to our site come Feb. 14th.
I have one question however, is it possible that when I expand "CRM" and then secondly expand "Contact Manager","CRM" then returns back to it's original states drop down menu? Please let me know, thanks!!
A: You should set the following parameter:
var tcloseExpandedXP=1;