From df44690b3aff3ac791d0235c3185624def8c7f4b Mon Sep 17 00:00:00 2001 From: Peter Schojer Date: Tue, 24 Jun 2008 10:04:57 +0000 Subject: [PATCH] fixed IE7 rendering error --- WebWidgets/ExtJS/src/HorizontalLayoutRenderer.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/WebWidgets/ExtJS/src/HorizontalLayoutRenderer.cpp b/WebWidgets/ExtJS/src/HorizontalLayoutRenderer.cpp index 5b1654a43..0e94db2ce 100644 --- a/WebWidgets/ExtJS/src/HorizontalLayoutRenderer.cpp +++ b/WebWidgets/ExtJS/src/HorizontalLayoutRenderer.cpp @@ -62,8 +62,9 @@ void HorizontalLayoutRenderer::renderHead(const Renderable* pRenderable, const R const HorizontalLayout* pLayout = static_cast(pRenderable); std::ostringstream layoutConfig; layoutConfig << "{columns:" << pLayout->size() << "}"; - - static std::string layout("column"); + + static std::string layout("table"); + //static std::string layout("column"); -> this works with firefox but faila with IE7! LayoutRenderer::renderLayoutHead(pLayout, context, ostr, layout, layoutConfig.str()); }