diff --git a/WebWidgets/ExtJS/src/LayoutRenderer.cpp b/WebWidgets/ExtJS/src/LayoutRenderer.cpp index 7a9b8392e..16242c89f 100644 --- a/WebWidgets/ExtJS/src/LayoutRenderer.cpp +++ b/WebWidgets/ExtJS/src/LayoutRenderer.cpp @@ -70,6 +70,8 @@ void LayoutRenderer::renderLayoutHead(const Layout* pLayout, const RenderContext // assume that the direct parent is a panel ostr << "new Ext.Panel({border:false,bodyBorder:false,"; ostr << "id:'" << pLayout->id() << "',"; + if (!pLayout->isVisible()) + ostr << "hidden:true,"; renderParameters(pLayout, context, ostr, layoutId, layoutConfig, cols, horPad, vertPad); ostr << "})"; }