Constructor
new OO.ui.Error(message, [config])
#
Errors contain a required message (either a string or jQuery selection) that is used to describe
what went wrong in a process
. The error's #recoverable and #warning
configurations are used to customize the appearance and functionality of the error interface.
The basic error interface contains a formatted error message as well as two buttons: 'Dismiss' and 'Try again' (i.e., the error is 'recoverable' by default). If the error is not recoverable, the 'Try again' button will not be rendered and the widget that initiated the failed process will be disabled.
If the error is a warning, the error interface will include a 'Dismiss' and a 'Continue' button, which will try the process again.
For an example of error interfaces, please see the OOUI documentation on MediaWiki.
Parameters:
Name | Type | Attributes | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
message |
string | jQuery | Description of error |
||||||||||||||||
config |
Object |
optional |
Configuration options Properties:
|
Errors contain a required message (either a string or jQuery selection) that is used to describe
what went wrong in a process
.