Recent Questions
Q: I am trying out your program and it's really sweet. I have 1 little problem. I created the menu everything works in IE7. In firefox the menu is about 4 or 5 px longer. It seems like in firefox there is a border around each top level item although I have set all borders to 0 (I can see that because I have set roolover color of background to opposite of normal color)
 
A:  Try to set exact width for the menu in "px". 
For example: 
  var menuWidth="600px";
Q: I using "deluxe menu Tree " : floating menu and I would like to remove the icon on the right, setting TXPExpandBtn.Is this possible?
A: No, you cannot remove expand buttons in   var tXPStyle=1;.
But you can use another images for them. You can change it in Submenu Styles.
You can use   var tXPStyle=0; also.
Q: Can you please give me an example of how I would return the full path to the selected item of the web site menu?
A: See the following example:
function getFullPath(mInd){
   var result='';
 // get pressed item
   var params = dm_ext_getMenuParams(mInd);
 if (!(params[2]>=0)) return '';
 function getPathForItem(mInd,smInd,itInd){
 // get for this item
   var params = dm_ext_getItemParams(mInd,smInd,itInd);
   var result = params[2]+ '('+ params[3]+')';
 // find root item id
 if (smInd <= 0) return result;
 params = dm_ext_getSubmenuParams(mInd,smInd);
 for (  var smInd_=0;smInd_ for (  var itInd_=0;itInd_ itParam = dm_ext_getItemParams(mInd,smInd_,itInd_);
 if (itParam[0]=arams[2])// id
 return result + '->' + getPathForItem(mInd,smInd_,itInd_);
 }
 }
 return result;
 };
 return getPathForItem(mInd,params[1],params[2]);
}
Q: I'm experimenting with the purchased Treemenu. Looks very nice! 
 A question: When I set the menu width to 200px and the text of the item exceeds this width, text is not wrapped resulting in some strange display. How can I wrap the text in the java menu tree? 
 I can not simply use extra <br> tags because the data of the items are dynamic (php + MySQL).
 
A: You should set the following parameter 
  var tnoWrap=0; 
Try that.