Recent Questions
Q: I recently received a non-profit license for your product, and after I installed it and the 'trial version' label disappeared, two of my javascript menu frames started appearing "up", instead of "down" which is preferred.
 The 'enrollment center' and the 'physician center' work fine. The 'volunteer center' and 'donor center' used to work correctly (down) before I updated to the non-profit license, but now they appear "up".
 If you could please help me that would be great. 
A:  You should set the following parameter:
  var subMenuVAlign="top";
Q: Please tell me where I am going wrong: 
The menu is all messed up!
 
A: See, now you have: 
  var itemBackImage=["data.files/btn_green.gif","data.files/btn_whitegreen.gif"]; 
and you also assign Individual Item Style with itemBackImage anditemWidth parameters for each item 
  var itemStyles = [ 
 ["itemWidth=92px","itemBorderWidth=0","fontStyle=normal 11px Tahoma","fontColor=#000000,#000000",
"itemBackImage=data.files/btn_whitegreen.gif,data.files/btn_white_white.gif"],
]; 
  var menuItems = [ 
 ["projects","", , , , , "0", "0", , ], 
 ["FMWR","", , , , , "0", "0", , ], 
 ["general water info","", , , , , "0", "0", , ], 
 ["bulletin board","", , , , , "0", "0", , ], 
 ["WSS MDG tracking","", , , , , "0", "0", , ], 
 ["reform instruments","", , , , , "0", "0", , ], 
You should delete itemBackImage and itemWidth parameters from itemStyles.
Q: Thank you for your prompt reply. But i was wondering where should I paste this code? Can you please explain the working of the javascript toolbar menu function
 dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
 I have 5 items in the javascript toolbar menu : Admin Options, Status Report, Remarks, Edit Profile, Data Entry. 
 I want to disable some fields for different users. 
 I have 3 role id's set in my database.
 I want certain fields disabled for different users. 
 For eg : For Roleid =1 , i.e admin , I want all items to be visible.
 For Roleid =2 , i dont want the Admin Options to be visible.
 For Roleid=3 , I dont want Admin Options & Status reports. 
 Can you please elaborate on the working of the changeItemVisibility function. I was confused as there were no examples to demonstrate the code.
A: Notice also that you should set
  var dynamic=1;
parameter to use API functions.
Q: I am using deluxe-menu for the third time to create a school web site. It has worked fine on the previous two sites, but I am making a horizontal menu this time instead of a vertical menu. The menu won't align itself correctly in Firefox. I read the post in your FAQ and I set the align tag in the TD element and also the size attribute, but that didn't work.
 Could you give me some suggestions. It looks fine ie IE, but not Firefox.
 
A: Try to specify exact value for menu width. 
For example: 
  var menuWidth="800px"; 
It's necessary to specify exact value for Mozilla browsers. It helpsto position menus correctly.