Gets the locale object used to format and display localizable strings in the form.
Namespace: MindFusion.Scheduling
File: BaseForm.js
JavaScript Copy Code |
---|
get localInfo() {} |
An Object that represents the local info.
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); |