Wiki source code of WORadioButtonList

Version 13.1 by Klaus Berkling on 2012/03/03 17:19

Show last authors
1 == Introduction ==
2
3 WORadioButtonList displays a list of radio buttons. The user can make a selection that is then returned selection object.
4
5 == Usage ==
6
7 {{code}}
8
9 WORadioButtonList {
10  list = ObjectsList;
11  item = ObjectItemInList;
12  displayString = ObjectItemInList.displayString;
13  value = valueOfInputTag;
14  index = ObjectListIndex;
15  prefix = prefixHTMLString;
16  suffix = suffixHTMLString;
17  selection = selectedObjectInList;
18  name = aName;
19  disabled = disabledList;
20  escapeHTML = renderDisplayStringAsHTML;
21 }
22
23 {{/code}}