mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-25 16:30:59 +00:00
55 lines
785 B
Text
55 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";
|
||
|
};
|
||
|
|