The data field properties will allow the user to change the data field properties to fit their specific application needs.
Custom scripts can be added through the scripting sections, help lists and intelli-tag lists can be added, group fields can be created and managed, validation rules and input rules can be set and much more.
Input Data Field Properties
Field name and description will allow the user to set the field name and the field description. Descriptions are useful for leaving notes for other admin users.
Be careful when changing field names as this can affect linked objects such as triggers and scripts.
A VBScript alias can be created to avoid script problems when changing field names or to simplify writing scripts.
The document scripting properties will allow the user to run visual basic scripts in the context of the job workflow.
OnValidate will run every time any value is changed either by user interaction or by another data capture object or script;
OnDocumentCreated will run when the document is created inside the batch on import;
OnDocumentDeleted will run when a document is deleted from the batch either from a script or manually;
OnDocumentTypeCreated will run when a new document type is created by the system;
OnDocumentTypeChanged will run when a document type is changed either while detecting the type for the first time or changing it manually or through a trigger;
OnDocumentProcessBegin will run as soon as each document starts processing, the script will delay the start of the processing;
OnDocumentProcessFinish will run as soon as all processing steps are run for each document;
OnLoadDocument will run when the user or the system selects a document;
OnBeforeChangeDocument runs when the user or the system changes the document selection, before the new document loads;
OXGridValueChanged will run when a value is read or changed on any modules panel grid control, when Xgrid read is processing this code will run only once;
OnValueChanged runs whenever any data field value is changed, this won't run during processing.