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.
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 )
Is there any way to destroy the viewport, or hide it.
Thanks.
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
dhtmlx.com/docs/products/kb/inde … tmlxwindow
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)
Excelent, this solve my problem.
dhxWins.window(“win”).attachEvent(“onClose”, function(win) {
document.body.removeChild(dhxWins.vp)
});
Thanks.