mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 12:11:18 +00:00
Ported to WO names. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30689 72102866-910b-0410-8b05-ffd578937521
54 lines
785 B
Text
54 lines
785 B
Text
|
|
|
|
RadioButton1: WORadioButton
|
|
{
|
|
selection = value;
|
|
checked = isChecked1;
|
|
name = "RadioButton";
|
|
};
|
|
|
|
RadioButton2: WORadioButton
|
|
{
|
|
selection = value;
|
|
checked = isChecked2;
|
|
name = "RadioButton";
|
|
};
|
|
|
|
RadioButton3: WORadioButton
|
|
{
|
|
selection = value;
|
|
checked = isChecked3;
|
|
name = "RadioButton";
|
|
};
|
|
|
|
IsCheckedValue1: WOString
|
|
{
|
|
value = isChecked1;
|
|
};
|
|
|
|
IsCheckedValue2: WOString
|
|
{
|
|
value = isChecked2;
|
|
};
|
|
|
|
IsCheckedValue3: WOString
|
|
{
|
|
value = isChecked3;
|
|
};
|
|
MainPageLink: WOHyperlink
|
|
{
|
|
pageName = "Main";
|
|
string = "Main Page";
|
|
};
|
|
|
|
Form: WOForm
|
|
{
|
|
enctype = "multipart/form-data";
|
|
};
|
|
|
|
SubmitButton: WOSubmitButton
|
|
{
|
|
action = submitAction;
|
|
value = "Submit";
|
|
};
|
|
|