-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Component/s: Seam / JSF UI, Workflow
-
Tags:
-
Backlog priority:300
-
Sprint:nxfit 8.3.7
-
Story Points:2
From layouts-contrib.xml:
<layout name="current_route_layout"> <templates> <template mode="any"> /layouts/layout_grid_template.xhtml </template> </templates> <rows> <row> <properties mode="any"> <property name="nxl_gridStyleClass_0">gridStyle12</property> <property name="nxl_gridStyleClass_1">gridStyle7</property> <property name="nxl_gridStyleClass_2">gridStyle5</property> <property name="nxl_gridStyleClass_0">gridStyle12</property> </properties> <widget>current_route_panel_top</widget> <widget>current_route_panel_left</widget> <widget>current_route_panel_right</widget> <widget>current_route_panel_bottom</widget> </row> </rows> </layout>
Should be:
<layout name="current_route_layout"> <templates> <template mode="any"> /layouts/layout_grid_template.xhtml </template> </templates> <rows> <row> <properties mode="any"> <property name="nxl_gridStyleClass_0">gridStyle12</property> <property name="nxl_gridStyleClass_1">gridStyle7</property> <property name="nxl_gridStyleClass_2">gridStyle5</property> <property name="nxl_gridStyleClass_3">gridStyle12</property> </properties> <widget>current_route_panel_top</widget> <widget>current_route_panel_left</widget> <widget>current_route_panel_right</widget> <widget>current_route_panel_bottom</widget> </row> </rows> </layout>
The nxl_gridStyleClass_0 property was defined twice and no nxl_gridStyleClass_3 property was present.