Report data entry fields

Control steps can contain data entry fields that collect report data from the operator. Data entry fields are represented by a html <input>, <textarea>, or <select> tag depending on the report data type. HTML <input> tags are used for REAL, INTEGER or STRING report data types. HTML <select> tags are used for ENUMERATION report data types. HTML <textarea> tags are used for STRING report data types . You must set the HTML tag Name attribute to match the report name as defined in the area model so eProcedure knows which phase report to associate with each data entry field.
REAL, INTEGER or STRING Data Types
<input name="report" size="20" type="text" >
(where report is the name of a phase report in the equipment database.)
ENUMERATION Data Type
<select name="report" size="1"></select>
(where report is the name of a phase report in the equipment database.)
STRING Data Type
<textarea name="report" rows="2" cols="40" >
(where report is the name of a phase report in the equipment database.)
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal