Status does not work in skin: dhx_terrace and dhx_web

status does not work in skin: dhx_terrace and dhx_web.
but works dhx_skyblue
Images.zip (234 KB)

Can’t reproduce this issue: locally everything works.
We need to see a direct link or completed demo to see your issue.
docs.dhtmlx.com/doku.php?id=othe … leted_demo

Resolved.

error code:

var status = Func.getLayout().cells('b').attachStatusBar();
status.setText('Lucas');
Func.getLayout().cells('b').expand();

correct code:

Func.getLayout().cells('b').expand();
var status = Func.getLayout().cells('b').attachStatusBar();
status.setText('Lucas');

expand () loses the previous definition

Thanks

worked in dhx_terrace.
but still dhx_web error, is getting hidden.

Resolved :slight_smile:
toolbar has to load after the expand()

Thanks