splitbrain / dokuwiki-plugin-bureaucracy

Create forms and generate pages or emails from them
http://www.dokuwiki.org/plugin:bureaucracy
GNU General Public License v2.0
43 stars 47 forks source link

Select/radio values and labels #314

Open iainhallam opened 2 years ago

iainhallam commented 2 years ago

At present the select field seems to create options in HTML where the value property is the same as the content of the option. It would be useful and perhaps make it easier to create nice forms if we could specify them both separately:

select "Rating" "1|2|3" "Awful|OK|Great" # Using a new parameter for labels
select "Rating" "Awful=1|OK=2|Great=3" # Using a combined syntax label=value (could be reversed)

The dropdown would only show the labels but would submit the values instead.

The same sort of thing could be done for radio buttons with HTML labels.