I am using menu dhtmlxMenu_v10_70115 in aspx c#, but postback on page url images the menu not display and path de images different
First Load page url images of menu =
localhost/Gestiona/Enviar/undefinedver_Word.gif
In definition of de control in the page is:
menu.loadXML(’…/Toolbars/_menuTurnar.xml’);
menu.setGfxPath(’…/Imagenes/Enviar/’);
menu.showBar();
Definition in XML of Menu is:
<MenuItem name=“Guardar” src=“saveHS.gif” id=“cmdguardar” width=“30” />
Please Help
Problem can be caused by XML caching after post back, to resolve issue just change the order of commands.
menu.setGfxPath(’…/Imagenes/Enviar/’);
menu.loadXML(’…/Toolbars/_menuTurnar.xml’);
menu.showBar();