The task interface configuration guide describes the features of the HTML/JS/CSS editor. You can also try creating a task interface in Template Builder.
Contains text suggestions that are displayed when the Toloker points the cursor at the input field. There are two types of text suggestions:
Universal suggestions used in all tasks.
Individual suggestions for different tasks.
Set the array of suggestion strings in the JS code (getTemplateData
method) to include it in the project'sinput data set:
Add the {{field type="suggest" name="<output field name>" source=<array name>}}
component to the HTML code. Example:
{{field type="suggest" name="result" source=countries allowCustomInput=true}}
Parameter | Description | Required | Default value |
---|---|---|---|
type | Field type: suggest — String input field with suggestions. | yes | no |
name | Attribute for the output data field. Contains the output field name. | yes | no |
source | Name of array with suggested strings. For example: source=countries . The array is defined in the JS-code of the project ( getTemplateData method). | yes | no |
allowCustomInput | Whether the Toloker can ignore suggestions and enter their own string. | no | false |
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" |
placeholder | The text to display in the empty field. Note If | no | no |
hotkey | Shortcut for setting focus on the field. | no | no |
value | The value to write in responses if the Toloker didn't fill in the field. Note
| no | no |
class | The CSS class for the field. For example: class="mytask_field" . | no | ".field" ".field_type_suggest" |
Last updated:Â February 15, 2023