Multi line text inputs in shiny

前端 未结 1 791
情歌与酒
情歌与酒 2021-02-13 14:22

What are my options to realize text inputs with multiple lines/line breaks (either explicit or just soft-wraps for nicer output in the UI) in shiny?

I\'d like to implem

相关标签:
1条回答
  • 2021-02-13 15:20

    Try using textAreaInput instead of textInput. With the former you can set height and width, and it automatically will wrap to next line if line is too long.

    Here is where it is mentioned in the docs.

    0 讨论(0)
提交回复
热议问题