Recent Questions
Q: I am having some difficulty dynamically adding items to a dhtml sliding menus.
A: See dtreet_ext_insertItem () function has the following parameters:
function dtreet_ext_insertItem (menuInd, parentItemID, itemInd, itemParams)
Creates a new item and inserts it into a specified position.
menuInd - index of a menu on a page, >= 0.
parentItemID - ID property of an item.<, >= 0.
itemInd - index of a new item within the menu, >= 0.
itemParams - item parameters.
Notice that parentItemID is the Id property of the parent item
(notindex). If you want to add top items you should set parentItemID=0.
itemInd - you should use this parameter if you want to add item in the
specific place, for example set itemInd=5 if you want to add item
before the existing item with itemInd=5.
If you set itemInd=null the new item will be added at the end of this submenu and its index will be added automatically.
Q: I have read your http://deluxe-tree.com/whats-new-info.html.
And really I do not understand this phrase:
- Item ID format has changed. It depends on the parent ID = [parent ID]i[item index].
Examples: for the first level dtree _0i0, dtree_0i1..., for the second level dtree_0i1i0,dtree_0i1i1, dtree_0i1i2...
Where do I fill in?
Do I have to rename my cascading menu titles?
A: Actually you shouldn't change anything.
This info is for the customers who use these indexes (dtree_0i1i2) only.
Q: We're looking to purchase the developer's license for the Deluxe menu/Tuner program and are not sure which to get. It shows one that doesn't contain the dhtml scripts source code and one that does. What is the importance of having the javascript source code? Will the program not work correctly if you don't have it?
A: See in Single Website License, Multiple Website License and DeveloperLicense our source code is obfuscated.
And in Developer License with Javascript Source Code you can see thecode and change it.
But we DO NOT provide technical support for modified source code.
Q: There seems to be a small checkered rectangle at the top of button menu that I would like to see disappear.
A: See, you have
var tmoveable = 1;
var tmoveImage = "DeluxeMenu/deluxe-tree/img/movepic.gif";
var tmoveImageHeight = 12;
If you want your menu to stay movable you should set the followingparameters to delete rectangle at the top.
var tmoveImage = "";
var tmoveImageHeight = 0;