Recent Questions
Q: Is it possible to add a combo box or a search field to a tree view component?
A:  You can paste any html code inside item's text, for example:
 ["+Support", "", "icon5_t.gif", "icon5_to.gif", "", "Support Tip"],
  ["|Index  <select style='width:120px;height:17px;font:normal 10px Tahoma,Arial;'><option>Section 1<option>Section 2<option>Section 3</select>","", "", "", "", "", "", "0"],
  ["|Search <input type=text style='width:80px;height:17px;font:normal 10px Tahoma,Arial;'>  <input type=button value='Go'style='width:30px;height:17px;font:normal 10px Tahoma,Arial;'>", "", "", "", "", "", "", "0"],
  ["|Write Us", "mailto:[email protected]", ""],
  ["|<INPUT TYPE=checkbox CHECKED ID=chk1 onclick='choosebox1()'>Uncheck this check box for some free advice","","","",],
 ["<img src='img/sep.gif' width=113 height=1>"],
Q: I have an even more vexing issue. For some reason my arrows are showing up on the left side of each java dhtml menu item, it seems the arrows icons are also retaining the right side padding for the java dhtml menu items. Can you give me a hand with this? 
A:  Now you have the following java dhtml menu parameter:
  var dmRTL=1;
You should set it to:
  var dmRTL=0;
Q: And another question about displaying the links code in html.
 How to create a drop down menu links to be displayed in the html code for search engines to catch them, is that possible? 
A:  You can use search engine friendly code and install it on yourpage before you call your data file.
You'll see text links in that case.
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="http://deluxe-menu.com">menu_item_text1</a>
 <a href="http://deluxe-tree.com">menu_item_text2</a> 
...etc. 
</div> 
To generate such a code use Deluxe Tuner application.
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3)
Q: I was wondering if there is a way to disable links in the dhtml context menu on a page. 
A: To disable your menu items you should set the following parameter to disable all items:
  var itemTarget="_";
Or you can disable items individually.
 ["Home","testlink.html", "", "", "", "_", "", "", "", "", "", ], //disabled
 ["Product Info","", "", "", "", "", "", "", "", "", "", ],
  ["|Features","testlink.html", "", "", "", "_", "", "", "", "", "", ], //disabled
  ["|Installation","", "", "", "", "", "", "", "", "", "", ],
You can also use function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
function to disable items on-the-fly, for example:
dm_ext_changeItem (0, 2, 3, ["", "", "", "", "", "_", "", "", ""]);