Re: Menu evaluation
2005/06/09 19:55
Viewed 7034 times
Replies: 1/10

Yes, it does.

Re[2]: Menu evaluation
2005/06/09 23:56
Viewed 9098 times
Replies: 1/9

thanks for the reply.

Two more questions.
#1- can I dynamically load different menu and submenu items based on user action from an xml using javascript (not reloading the page).
ex:
1st case
want to load menu1, menu2 items
2nd case
only load menu2 items

#2- can I enable/diable some menu items based on user action using javascript.

Let me know.

last
Re[3]: Menu evaluation
2005/06/10 00:38
Viewed 10823 times
Replies: 1/8

I was trying to work on the eavluation version.

  • Created a testhmenu.htm in a directory c:\palmeti\hmenu2.5
  • copied all the files from src folder of the zip to c:\palmeti\hmenu2.5\hmenu
  • tried to access the page , i get the error 'DynarcMenu is undefined'

any clues?

Html code in testhmenu.htm look as below.

  • ---------------
  • <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- load the menu stylesheet --> <style type="text/css"> @import url("/hmenu/skin-xp.css"); </style> <!-- declare the menu location --> <script type="text/javascript"> _dynarch_menu_url = "/hmenu/"; </script> <!-- load the menu program file --> <script type="text/javascript" src="/hmenu/hmenu.js"></script> <!-- [ ... ] your HEAD declarations here --> </head> <body onload="DynarchMenu.setup('menu');"> <table> <tr> <td> <select name="ts"></select> </td> </tr> <table> <ul id="menu"> <li title="Contains file operation options"> _File <ul> <li> <a href="javascript:doOpen();" title="Open a new file"> _Open </a> </li> <li> <a href="javascript:doSave();" title="Save the current file"> _Save </a> </li> <li> <a href="javascript:doSaveAs();" title="Save as a new file"> Save _as... </a> </li> </ul> </li> <li title="Links to other sites"> _Links <ul> <li> <img src="icons/mozilla.gif" alt="" /> <a href="http://www.mozilla.org" title="Mozilla browser (opens new window)" target="_blank"> _Mozilla </a> </li> <li> <img src="icons/opera.gif" alt="" /> <a href="http://www.opera.com" title="Opera browser">_Opera</a> </li> </ul> </li> </ul><html>
  • ----------

thanks

last
Google