Search
BaseForm.localInfo Property
See Also
 






Gets the locale object used to format and display localizable strings in the form.

Namespace: MindFusion.Scheduling
File: BaseForm.js

 Syntax

JavaScript  Copy Code

get localInfo() {}

 Property Value

An Object that represents the local info.

 Example

The 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