Renders the form content.
Namespace: MindFusion.Scheduling
File: BaseForm.js
SyntaxJavaScript
Copy Code
|
|---|
function drawContent () |
RemarksOverride this method in a derived class to render custom form content.
ExampleThe following code uses the drawContent method to add a text area to a custom form. The custom form is represented by a class that extends BaseForm:
JavaScript
Copy Code
|
|---|
drawContent() { // create a text-area for the item subject |
See Also