From e1bf125ebc114aae1c605c97861fd00ceab9644b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20=C3=89vrard?= Date: Wed, 23 Oct 2024 16:18:14 +0200 Subject: [PATCH] Parse child node of group tags at the end [PREVIEW] Fix PCLAS-1294 --- sao/src/view/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sao/src/view/form.js b/sao/src/view/form.js index 1be89460f49..5ca578c5bbc 100644 --- a/sao/src/view/form.js +++ b/sao/src/view/form.js @@ -262,7 +262,6 @@ function hide_x2m_body(widget) { var group = new Sao.View.Form.Container( Number(node.getAttribute('col') || 4)); this.view.containers.push(group); - this.parse_child(node, group); if (attributes.xalign === undefined) { attributes.xalign = 0.5; @@ -287,6 +286,7 @@ function hide_x2m_body(widget) { this.view.state_widgets.push(widget); this.container.add(widget, attributes); + this.parse_child(node, group); }, _parse_hpaned: function(node, attributes) { this._parse_paned(node, attributes, 'horizontal');