Notes

Creating

var notes = new Notes( args );

Parameters

Parameter Description
args.field Name of the field to store notes to
args.local Tells the Notes control to work (pull/update notes data) with the set to it object locally without going into the database
args.attach_to Form InputField control to attach to

If the args.field is provided and args.local is not provided or is false, the Notes control persists the notes in the database every time the new note is added.
VT notification(s) about the VT object update get sent to every AWS actor (a Team member), assigned to any role in this object's (Job's, etc) workflow.
The newly added note's text content is included into the notification's text.

Examples

Notes control attaches itself to the local Form field 'Notes' and updates its value on Add Note:
Edits and on Add Note immediately saves the notes into a Job in a database:
args.local = true. Edits the set object ("job_view_model" in this example) without saving it into the database. The Notes control just updates the job_view_model[["Notes"]] field and lets another, external to the control, process care about persisting of the updated object:

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.