Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Meenakshi on Jul 22, 2009 04:25
open dhtmlx forum
DHTMLX Menu bar hidden

I am facing a strange problem with menu bar.
On menu item click, i open a dhtmlxWindow as popup. on the popup screen, the page is divided into three frames. there are buttons/ links in the page. when i click on the Button/ link the menu bar gets hidden.

please help
Answer posted by Alex (support) on Jul 22, 2009 06:18

Hello,

please try to use the latest dhtmlxwindows.js (attached) version. Possibly it'll fix the issue. If the issue persists, please provide the sample to rre-create it.

Attachments (1)
Answer posted on Jul 22, 2009 07:24
changing the dhtmlxwindows.js file does not seem to fix the issue. please let me know if there is anything else that i can do to fix the problem.  
Answer posted by Meenakshi on Jul 22, 2009 07:30

Changing the dhtmlxwindows.js file does not seem to fix the issue. please let me know if there is anything else that i can do to fix the problem. Also, it will not be possible for me to share the code with you (As per the company policy.)

Answer posted by Alex (support) on Jul 22, 2009 07:33
We don't need the exact copy of your application - just any sample with any data that allows to re-create the issue. As locally we can't re-create the described problem.
Answer posted by Meenakshi on Jul 22, 2009 10:09

Hi,

I am attaching a sample project with the problem as described earlier.

On selecting "Product Admin" from Admiistrator menu, a dhtmlx window opens.  this window in turn opens a page, which has a link ("Testing"). on clicking on the link. the menu is hidden.

i have added the new dhtmlxwindow.js also inthe project

Attachments (1)
Sample.zip1.31 Mb
Answer posted by Alex (support) on Jul 23, 2009 02:36

Hello,

the correct action link should have  href="javascript:void(0)" as the href attribute:

<a href="javascript:void(0)" onclick="hello();" >Testing</a>

instead of

<a href="#" onclick="hello();" >Testing</a>

Moreover we have attached the latest dhtmlxlayout.js. Please, try to use it.

Attachments (1)
Answer posted by Meenakshi on Jul 23, 2009 05:48

Thanks Alex.

Changing the <a href ="#" to <a href ="javascript:void(0)"  worked for me. 

Thanks Again...