Problem with loadxml menu changes order

Hi,

I have a problem when I reload menu (I use loadxml command). Sometimes, the menu changes order.

I’ve also noticed the same problem on your sample form:
dhtmlx.com/docs/products/dht … arall.html

On the sample form, if you click Load XML 1 a few times, you’ll see menu order change, even though the xml statement is the same.

Any help would be greatly appreciated. Thanks.

Hi
In what brouser and what OS can we reproduce this issue on this sample?

Internet explorer 10. It doesn’t seem to happen in Chrome

The grid column resize also has an issue in Internet Explorer 10 but not in Chrome.

Hi

for menu in IE10:
add after clearAll()

menu.itemPull={} 

if you have no bg for selected item in submenu (skins/dhtmlxmenu_dhx_skyblue):

  1. remove bg* style from this rule
    div.dhtmlxMenu_dhx_skyblue_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item_selected

  2. add new rule

div.dhtmlxMenu_dhx_skyblue_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item_selected td { background-image: url("../imgs/dhxmenu_dhx_skyblue/dhxmenu_subselbg.gif") !important; background-repeat: repeat-x; background-position: top; }

Thank you! That fixed it.