|
@@ -31,13 +31,19 @@
|
|
|
</StackPane>
|
|
|
<VBox spacing="6" HBox.hgrow="ALWAYS">
|
|
|
<FormattedLabel styleClass="label-extra-large" format="%error.message" arg1="${controller.errorCode}"/>
|
|
|
- <Label text="%error.description" wrapText="true"/>
|
|
|
- <Hyperlink styleClass="hyperlink-underline" text="%error.hyperlink.lookup" onAction="#searchError" contentDisplay="LEFT">
|
|
|
+ <Label text="%error.existingSolutionDescription" wrapText="true" visible="${controller.lookUpSolutionVisibility}" managed="${controller.lookUpSolutionVisibility}"/>
|
|
|
+ <Label text="%error.description" wrapText="true" visible="${!controller.lookUpSolutionVisibility}" managed="${!controller.lookUpSolutionVisibility}"/>
|
|
|
+ <Hyperlink styleClass="hyperlink-underline" text="%error.hyperlink.solution" onAction="#showSolution" contentDisplay="LEFT" visible="${controller.lookUpSolutionVisibility}" managed="${controller.lookUpSolutionVisibility}">
|
|
|
<graphic>
|
|
|
<FontAwesome5IconView glyph="LINK" glyphSize="12"/>
|
|
|
</graphic>
|
|
|
</Hyperlink>
|
|
|
- <Hyperlink styleClass="hyperlink-underline" text="%error.hyperlink.report" onAction="#reportError" contentDisplay="LEFT">
|
|
|
+ <Hyperlink styleClass="hyperlink-underline" text="%error.hyperlink.lookup" onAction="#searchError" contentDisplay="LEFT" visible="${!controller.lookUpSolutionVisibility}" managed="${!controller.lookUpSolutionVisibility}">
|
|
|
+ <graphic>
|
|
|
+ <FontAwesome5IconView glyph="LINK" glyphSize="12"/>
|
|
|
+ </graphic>
|
|
|
+ </Hyperlink>
|
|
|
+ <Hyperlink styleClass="hyperlink-underline" text="%error.hyperlink.report" onAction="#reportError" contentDisplay="LEFT" visible="${!controller.lookUpSolutionVisibility}" managed="${!controller.lookUpSolutionVisibility}">
|
|
|
<graphic>
|
|
|
<FontAwesome5IconView glyph="LINK" glyphSize="12"/>
|
|
|
</graphic>
|
|
@@ -60,7 +66,7 @@
|
|
|
</graphic>
|
|
|
</Hyperlink>
|
|
|
</HBox>
|
|
|
- <TextArea VBox.vgrow="ALWAYS" text="${controller.detailText}" prefRowCount="5" editable="false"/>
|
|
|
+ <TextArea VBox.vgrow="ALWAYS" text="${controller.detailTexts}" prefRowCount="5" editable="false"/>
|
|
|
</VBox>
|
|
|
|
|
|
<ButtonBar buttonMinWidth="120" buttonOrder="B+C">
|