Search
BaseForm.row Method
See Also
 






Renders a row element.

Namespace: MindFusion.Scheduling
File: BaseForm.js

 Syntax

JavaScript  Copy Code

function row ()

 Example

The following code uses the drawContent method to get a row element for this form. Then it appends the row to the content of the custom form. The custom form is represented by a class that extends BaseForm:

JavaScript  Copy Code

drawContent() {
  super.drawContent();
  var content = this.getContent();

  
                        var row = this.row();
  row.innerHTML = this.localInfo.subjectCaption;
  content.appendChild(row);
                       ………….
}

 See Also