Gets the locale object used to format and display localizable strings in the form.
Namespace: MindFusion.Scheduling
Assembly: BaseForm.js
SyntaxJavaScript
Copy Code
|
|---|
get localInfo() {} |
An Object that represents the local info.
ExampleThe following code uses the localIno property to get the subject caption of the form. The form (this) is represented by a class that extends BaseForm:
JavaScript
Copy Code
|
|---|
| var row = this.row(); row.innerHTML = this.localInfo.subjectCaption; content.appendChild(row); |
See Also