Layout resizing issue : selection

Hi,

I’ve some trouble when a I resize my layout. Even if I disable the resize effect, there is a “blue effect” (like when we select a text). If someone find out how it can be fixed…

Here is the bug :


thanks.

Hi
We need completed demo to reproduce your issue:
docs.dhtmlx.com/doku.php?id=othe … leted_demo

I finally fixe the problem by disabling selection with calling this javascript method :

function Layout_Stop_Selection(mode){
	function ffalse(){
		return false;
	}
	function ftrue(){
		return true;
	}
	document.onselectstart = new Function ("return "+mode+";");
	if(window.sidebar){
		document.onmousedown = ffalse;
		document.onclick = ftrue;
	}
}

But I don’t know when can I reactivate selection on my web page.

We still need completed demo to help you