zooniverse / scribeAPI

scribe API
MIT License
79 stars 25 forks source link

Questions about TextTool #549

Open tufixm opened 8 years ago

tufixm commented 8 years ago

Not a bug, just a couple of questions to those of you who might have already had these issues:

  1. Does the limit attribute for the TextTool actually work? I'm trying to define such a tool with limit 1, since I would expect only a one character transcription for certain fields. For example, something like this: "subtype1": { "tool": "textTool", "tool_config": {"limit": 1}, "label": "Subtype-1:" }
  2. Is there any way to position the label and the text area on the same line, instead of having the text area on a new line just under the label?
  3. Are any of the autocomplete options currently functioning? I am trying to do something like this:

    "targetObjects": {
       "tool": "textTool",
       "tool_config": {"suggest": ["door", "window", "other"]},
       "label": "Transcription"
    }

    , yet no suggestions seem to appear in the text box.

Thank you for your help!