<< Click to Display Table of Contents >>
WriteForm |
WriteForm(FormName, Fields, Callback)
Writes answers to an existing Form or creates a Form if it does not exist. The FormName parameter is the Form's name. The Fields parameter is a list of answers. The Callback parameter is a function that receives the asynchronous return of this operation. Example of use:
WriteForm("Form:",
{fieldName: {value: 1}},
function(er) {
}
);