rstudio / shinyuieditor

A GUI for laying out a Shiny application that generates clean and human-readable UI code
https://rstudio.github.io/shinyuieditor/
MIT License
209 stars 29 forks source link

Allow unnamed choices in checkbox, select, and radio inputs #196

Closed gadenbuie closed 8 months ago

gadenbuie commented 9 months ago

Currently, named inputs are required for checkbox, select and radio inputs. It'd be nice to default to unnamed inputs, since these are the most user-friendly (the value in the UI matches the value on the server side). If users could still opt into named choices, the control to choose that behavior could provide additional help text. Or maybe rather than key/value, the input fields could be labelled in a way that makes it more clear that one is shown to the app user (what's currently called key) and the other (value) is used in the server logic.

image