Categories | Question details Back To List | ||
:: DHX Menu :: Design Glitch. Hi, Why this design glitch occurs ? Image Link: http://img520.imageshack.us/img520/2761/menudesignglitchdh6.jpg Answer posted by Support on Jan 21, 2009 07:07 Hello, Which version of menu are you using? And please provide some source code. Answer posted by Rajakrishna on Jan 21, 2009 20:53 Hi, I am using dhtmlxMenu v.1.0 Standard edition build 80512 Following is the source: function callProofMenus() { /* Updates: Code for showing the DHX Menu; By: Tejas; Date: 15/Jan/2009: S */ if($('proofMenu')){ proofMenus=new dhtmlXMenuBarObject(document.getElementById('proofMenu'),'10%',1,""); proofMenus.setOnClickHandler(function(itemId, itemValue){ if (itemId == "sectionProof") { submitProof('sectionProof'); } else if (itemId == "tableProof") { submitProof('tableProof'); } else if (itemId == "documentProof") { submitProof('documentProof'); } else if (itemId == "xbrlProof") { submitProof('xbrlProof'); } }); proofMenus.setGfxPath(Gpath+"/js/dhtmlx/dhtmlxMenu/codebase/imgs/"); proofMenus.enableWindowOpenMode(false); proofMenus.loadXML(Gpath+"/xml/document/proofMenus.xml"); proofMenus.showBar(); } /* Updates: Code for showing the DHX Menu; By: Tejas; Date: 15/Jan/2009: E */ } Answer posted by Support on Jan 22, 2009 02:04 Unfortunately the issue can't be reconstructed locally. Are you using some flash|activeX elements on the page? The issue looks as problem with data rendering in browser and not really related to the js code of component. Also, please be sure that you not using zooming in browser ( it may be glitch of zooming ) Answer posted by Rajakrishna on Jan 22, 2009 20:35 Hi, Is it because of tabbar that comes in between ?? Answer posted by Support on Jan 23, 2009 02:21 The tabbar must not cause such distortion, it just a plain html element, so it must not affect any other elements on the page. The problem can be caused by some extension of browser or non-html active elements used on the page. |