Deserializes the settings from a JSON string.
Namespace: MindFusion.Common
File: Locale.js
JavaScript Copy Code |
---|
function fromJson (json) |
Type: String
String. A string containing data for the settings.
The following code creates a new Locale instance and loads the date and time format settings from a json file.
JavaScript Copy Code |
---|
var locale = new Locale("us-2"); locale.dateSettings.fromJson("locale.json"); locale.dateSettings.generate(); calendar.locale = locale; |