ValidationSummary¶
Lists form-level validation errors (pairs with FormLayout).
import QWinUI3.Extras · src/extras/QWinUI3/Extras/ValidationSummary.qml
Category: Input & forms · Library: v2.80
Extends Control.
Example¶
FormLayout {
id: form
ValidationSummary {
errors: form.errors
visible: form.errors.length > 0
}
HeaderedTextBox { … }
}
Notes¶
Error banner + bullet list. Bind errors to FormLayout.errors after validate(). Optional title; uses Theme.systemCritical for severity styling.
API¶
Properties¶
| Name | Type | Description |
|---|---|---|
errors |
var |
Error strings to display |
title |
string |
Banner title |
forceVisible |
bool |
Show even when errors is empty (for layout testing) |
Signals¶
No custom signals (use inherited signals from the base type).
Methods¶
No custom methods (use inherited methods from the base type).
Inherited from Control¶
Also available (base type / Qt Quick Controls):
paddingfontbackground/contentItem
Generated from module sources by scripts/generate_component_docs.py — do not edit by hand.