mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 03:31:16 +00:00
40 lines
656 B
Text
40 lines
656 B
Text
|
|
||
|
APopUpButton: WOPopUpButton
|
||
|
{
|
||
|
list = application.bundleInfo.PopUpButton.list;
|
||
|
item = anItem;
|
||
|
value = anItem.value;
|
||
|
displayString = anItem.label;
|
||
|
selection = selectedItem;
|
||
|
noSelectionString = "Nothing Selected";
|
||
|
name = "POPNAME";
|
||
|
};
|
||
|
|
||
|
SelectedItem: WOString
|
||
|
{
|
||
|
value = selectedItem;
|
||
|
};
|
||
|
|
||
|
SelectedValue: WOString
|
||
|
{
|
||
|
value = selectedItem.value;
|
||
|
};
|
||
|
|
||
|
MainPageLink: WOHyperlink
|
||
|
{
|
||
|
pageName = "Main";
|
||
|
string = "Main Page";
|
||
|
};
|
||
|
|
||
|
Form: WOForm
|
||
|
{
|
||
|
enctype = "multipart/form-data";
|
||
|
};
|
||
|
|
||
|
SubmitButton: WOSubmitButton
|
||
|
{
|
||
|
action = submitAction;
|
||
|
value = "Submit";
|
||
|
};
|
||
|
|