Changes for page WOPopUpButton
Last modified by Pascal Robert on 2011/09/26 05:50
From version 2.1
edited by Pascal Robert
on 2011/04/26 23:05
on 2011/04/26 23:05
Change comment:
There is no comment for this version
To version 3.1
edited by Pascal Robert
on 2011/05/08 02:00
on 2011/05/08 02:00
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -2,15 +2,41 @@ 2 2 3 3 = Introduction = 4 4 5 +WOPopUpButton, when clicked, displays itself as a selection list that allows the user to select only one item at a time. The related element WOBrowser is similar to WOPopUpButton except that it allows the user to select more than one item at a time. 6 + 7 +You should provide the title of an item in displayString rather than in value. If there is no binding for displayString, the string assigned to value is used for the item. 8 + 5 5 = Usage = 6 6 7 7 {{code}} 8 8 13 +WOPopUpButton { 14 + list=anArray; 15 + item=anItem; 16 + displayString=displayedValue; 17 + [value=optionValue;] 18 + [selection=theSelection; | selectedValue=selectedValue;] 19 + [name=fieldName;] 20 + [disabled=aBoolean;] 21 + [escapeHTML=aBoolean;] 22 + [noSelectionString=aString;]... 23 +} 9 9 10 10 {{/code}} 11 11 12 12 = Bindings = 13 13 29 +| list | Array of objects from which the WOPopUpButton derives its values. 30 +| item | Identifier for the elements of the list. For example, aCollege could represent an object in a colleges array. 31 +| displayString | Value to display in the selection list; for example, aCollege.name for each college object in the list. 32 +| value | For each OPTION tag within the selection, this is the "value" attribute (that is, <OPTION value="someValue">). You can use this binding to specify additional identifiers of each item in the menu. 33 +| selection | Object that the user chose from the selection list. For the college example, selection would be a college object. 34 +| selectedValue | Value that is used with direct actions to specify which option in the list is selected. 35 +| name | Name that uniquely identifies this element within the form. You can specify a name or let WebObjects automatically assign one at runtime. 36 +| disabled | If disabled evaluates to true, this element appears in the page but is not active. That is, selection does not contain the user's selection when the page is submitted. 37 +| escapeHTML | If escapeHTML evaluates to true, the string rendered by displayString is converted so that characters which would be interpreted as HTML control characters become their escaped equivalent (this is the default). Thus, if a your displayString is "a <b>bold</b> idea", the string passed to the client browser would be "a <B>bold</B> idea", but it would display in the browser as "a <b>bold</b> idea". If escapeHTML evaluates to false , WebObjects simply passes your data to the client browser "as is." In this case, the above example would display in the client browser as "a bold idea". If you are certain that your strings have no characters in them which might be interpreted as HTML control characters, you get better performance if you set escapeHTML to false. 38 +| noSelectionString | Enables the first item to be "empty." Bind this attribute to a string (such as an empty string) that, if chosen, represents an empty selection. When this item is selected, the selection attribute is set to null. 39 + 14 14 = Examples = 15 15 16 16 == Java methods ==