Dhtmlxlayout not resizing

Hi,

I am using IE8 and 2 monitors. When I stretch the browser window by the vertical ends, after a certain point the layout does not get resized. I looked into the code for dhtmlxlayout.js and the resizing logic and found that there is a piece of logic as

 this._doOnResizeStart = function () {
                if (this._lw != document.documentElement.clientHeight) {
	  		  window.clearTimeout(this._tmTime);
                    this._tmTime = window.setTimeout(function () {
                        that._doOnResizeEnd();
                    }, 200);
                };

on removing the if logic the window resizes under all conditions. Could you please let me know why that logic is required and suggest any other approach other than modifying this code ?

Cheers
Arjun

Hi,

condition if (this._lw != document.documentElement.clientHeight) { is not used in the latest version.

Thanks for that.

So would there be any impact if this condition was removed from version 2.6 ?

Cheers
Arjun

Is there a version 2.6 with the layout not having this check ?

The latest 2.6 doesn’t has it, built 110318

Hi Alex,

Kind of a silly question, but how do I get the latest 2.6 version, since all the download links are for the new 3.0 versions ?

Please advise.

Cheers
Arjun

Hi Arjun,

why don’t you want to download 3.0 version ? There were not changes in 3.0 layout, except fixes for 2.6 bugs.

Hi Alex,

Thanks for that…will do the same.

Cheers
Arjun