new patterns in dhtmlxlayout

Can I create a new pattern like “4E”?



we have simulated it qith 2E+2E, but we have obtained 2 independent areas to collapse and expand cells.



thanks.

Edit the dhtmlxlayout.js:

this.tplData = {
    …
    // add
    “4E”: ‘’;

this._availAutoSize = {
    …
    // add
    “4E_hor”: new Array(“a”, “b;c;d”),
    “4D_ver”: new Array(“a”, “b”, “c;d”)

It isn’t our aim, we obtain 4 panels in 2 columns and we need 4 panels in 1 column.

Could you please a picture?

here is it


Try this:

    “4E”: ‘’

    “4E_hor”: new Array(“a;b;c;d”)
    “4E_ver”: new Array(“a”, “b”, “c”, “d”)

It’s great!! thank you.