Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Carlos Alfaro M. on Apr 16, 2008 06:44
open dhtmlx forum
dhtmlxWindows - Input Cursor is hidden for Edit

Input Cursor is hidden for Edit

Hi

The input cursor is hidden in editable for blank cells in IE6. This occurs when i close the window.

Thanks.
Answer posted by Support on Apr 16, 2008 08:06
The problem can't be reconstructed with local samples.
If problem still occurs for you - please send any kind of sample where problem can be reconstructed ( you can send it directly to support@dhtmlx.com )
Answer posted by Carlos Alfaro M. on Apr 16, 2008 09:09

Is there any way to destroy the viewport, or hide it.

Thanks.

Answer posted by Support on Apr 16, 2008 09:16
If you are using latest version of window and auto-viewport, window will use document.body as viewport, so no any additional container will be created
    http://dhtmlx.com/docs/products/kb/index.shtml?cat=search&page=1&q=2762&ssr=yes&s=dhtmlxwindow

If you are not using auto-viewport, there is no API function to delete viewport, but you can use next command
     document.body.removeChild(dhxWins.vp)
Answer posted by Carlos Alfaro Mora on Apr 16, 2008 09:34

Excelent, this solve my problem.

     dhxWins.window("win").attachEvent("onClose", function(win) {
                document.body.removeChild(dhxWins.vp)
     });

Thanks.