Recent Questions 3 Depth Level Tree Javascript
Q: I would like to add your tree structure to my web page. I need to know if I can add substantial data to the expanded tree structure, for instance:
Click here to expand product A
And here is the expanded content that takes up three paragraphs and
wraps itself etcetera all about product A
Can your deluxe-tree accept multiple lines and paragraphs with wrapping in the sub items, or is it for one or two line menu data only.
A: var tnoWrap=0;
You can also use <br> tags in the item text, for example:
var tmenuItems = [
["line 1<br>line 2"],
];
Q: I would like to purchase a single website deluxe menu to be used in dhtml menu frame bar. I am not a professional web designer.
I would like to know the cost and details regarding the following.
I would also like to know if i take your trail version then for how many days will I be able to use the dhtml menu frame bar.
A: You should create your dhtml menu frame in Deluxe Tuner, save it.
Create html file with your frame set.
Set ID for the first frameset:
<FRAMESET id=frmSet rows=220,*>
<FRAME id=frame1 src="JavaScript Tree Menu Samples_files/cross-frame-horizontal-1.htm"> //menu frame
<FRAME id=frame2 name=frame2 src="JavaScript Tree Menu Samples_files/testlink.htm"> //content frame
</FRAMESET>
Then you should open your data file in any text editor and changedm_init(); to dm_initFrame("frmSet", 0, 1, 0);
JavaScript Tree Menu Single Website License - $39.95
See more info:
http://deluxe-menu.com/order-deluxe-menu-purchase.html
You can use trial version of the software as long as you want.
Q: I need to create a popup menu in javascript triggered from a flash movie button. Is this possible, and if so, do you have any documentation on this? (coding for flash button, etc)
A: Unfortunately you cannot assign OnClick or OnContextMenu event forflash file.
Q: Is it possible to insert an item at the top of the submenu in the html popup menu?
A: To insert item in the specific position you should use the following function:
function dm_ext_addItemPos (menuInd, submenuInd, iParams, Pos)
Adds the new item to a submenu.
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0. See more info about indexes here.
iParams = [array] - the array of item parameters.
Pos - the position in the menu where you want to add new item.
More info you'll find here:
http://deluxe-menu.com/functions-info.html