This version of the documentation is outdated!
Click here for the latest released version.
GlobalizationError
An object representing a error from the Globalization API.
Properties
- code: One of the following codes representing the error type (
Number
)- GlobalizationError.UNKNOWN_ERROR: 0
- GlobalizationError.FORMATTING_ERROR: 1
- GlobalizationError.PARSING_ERROR: 2
- GlobalizationError.PATTERN_ERROR: 3
- message: A text message that includes the error explanation and/or details (
String
)
Description
This object is created and populated by Cordova, and returned to a callback in the case of an error.
Supported Platforms
- Android
- BlackBerry WebWorks (OS 5.0 and higher)
- iOS
Quick Example
When the following error callback is invoked, it should display a popup dialog with the text similar to "code: 3" and "message: ".
function errorCB(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
};
Full Example
<!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.6.0.js"></script>
<script type="text/javascript" charset="utf-8">
function successCB(date) {
alert('month:' + date.month +
' day:' + date.day +
' year:' + date.year + '\n');
}
function errorCB(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
};
function checkError() {
navigator.globalization.stringToDate(
'notADate',
successCB,
errorCB,
{selector:'foobar'}
);
}
</script>
</head>
<body>
<button onclick="checkError()">Click for error</button>
</body>
</html>