Section Error
This is an error displaying component which can concatenate error messages sent by multiple components and display it at one location inside a section. It can be used as the section level error or for a specific widget, as per the design requirements.

Usage
Here are the steps to set the component in Quantum Visualizer:
- Open the Temenos DigitalOrigination project in Quantum Visualizer.
- Drag and drop a Flex Container widget onto the required form.
- Select the Flex Container and set the following properties:
- width: "100%"
- left and top as per design requirements
- height: "preferred"
This component contains only a Richtext widget. Therefore, you don't need to explicitly assign the breakpoint values in every form for the component. The left and right of the widget is defined as "30 Dp" each and is the same across the breakpoints.
APIs

To display the error on the form. Use the following code in the form controller.
this.view.sectionError.showError(“error text”);

To hide the error when required. Use the following code in the form controller to invoke this function.
this.view.sectionError.hideError();

To clear the error text. Use the following code in the form controller to invoke this function.
this.view.sectionError.clearError();
In this topic