Gets or sets the locale object used to format and display localizable information in the view.
Namespace: MindFusion.Common.UI
File: DateTimeView.js
Syntax
ExampleThe following code creates a new Locale called "us-2" and assigns it to the locale property of a DateTimeView instance:
JavaScript
Copy Code
|
|---|
var ui = MindFusion.Common.UI; var locale = new ui.Locale("us-2"); locale.dateSettings.dateFormats.shortDate = "MM/d/yyyy"; locale.dateSettings.generate(); dateTimeView.locale = locale; |
See Also