The task interface configuration guide describes the features of the HTML/JS/CSS editor. You can also try creating a string input field in Template Builder.
To add a string input field to the task, use the {{field type="input" name="<output field> name"}}
component. Example:
{{field type="input" name="result" placeholder="Enter a word" validation-show="right-center"}}
Add a field of string
type in the output data description. Example:
{ "result": { "type": "string", "required": true }}
Parameter | Description | Required | Default value |
---|---|---|---|
type | Field type: input — String input field. | yes | no |
name | Attribute for the output data field. Contains the output field name. | yes | no |
value | A string to be recorded in the output data file by default. | no | no |
width | Width of the field. Set in the following units:
| no | depends on the browser and font size |
validation-show | The position of popup hints (displayed if the response didn't pass validation). The position is relative to the input field.
| no | "top-left" |
size | Size of the field. Supported values: "S" , "M" , "L" , "XL" . | no | "L" |
disabled | Whether data can be edited:
| no | false |
placeholder | The prompt text to display in the empty field. | no | no |
class | The CSS class for the field. For example, class="annotation" . | no | ".field" ".field_type_input" |
Last updated:Â February 15, 2023