...
Code Block |
---|
$Form = {
element : $('form'), // jQuery form element
refresh : function() {} // method to re-build and render form from the scratch
readonly : boolean, // Specifies whether the form is in readonly or in edit mode
sections : {} // List of form sections
} |
Common Usage Scenarios
Attach Event Handlers.
...