A single message is specified by Message interface in PrimeVue that defines the severity and content as the properties. + Messages to display can either be defined using the value property which should an array of Message instances.
+There are four possible values for the severity of a message.
+ +Messages are closable by default resulting in a close icon being displayed on top right corner. In order to disable closable messages, set closable to false.
+Messages are cleared automatically after the timeout defined by life property which is 3 seconds by default. Use sticky mode to make them stay until + they are manually removed.
+ValidationMessage component is useful in cases where a single message needs to be displayed related to an element such as forms. It has one property, severity of the message.
+Name | +Type | +Default | +Description | +
---|---|---|---|
severity | +string | +info | +Severity level of the message. | +
closable | +boolean | +true | +Whether the message can be closed manually using the close icon. | +
sticky | +element | +null | +When enabled, message is not removed automatically. | +
life | +number | +3000 | +Delay in milliseconds to close the message automatically. | +
Following is the list of structural style classes, for theming classes visit
Name | +Element | +
---|---|
p-messages | +Container element. | +
p-messages-info | +Container element when displaying info messages. | +
p-messages-warn | +Container element when displaying warning messages. | +
p-messages-error | +Container element when displaying error messages. | +
p-messages-success | +Container element when displaying success messages. | +
p-messages-close | +Close icon. | +
p-messages-icon | +Severity icon. | +
p-messages-summary | +Summary of a message. | +
p-messages-detail | +Detail of a message. | +
None.
+