mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-06-03 10:30:46 +00:00
* Testing/DynamicElements
Ported to WO names. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30689 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
514d24d161
commit
21d987fbdc
84 changed files with 735 additions and 753 deletions
17
Testing/DynamicElements/CheckBox2Page.wo/CheckBox2Page.html
Normal file
17
Testing/DynamicElements/CheckBox2Page.wo/CheckBox2Page.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>GSWCheckBox Test 2</title>
|
||||
</head>
|
||||
<body>
|
||||
<h2>GSWCheckBox Test 2</h2>
|
||||
<br/>
|
||||
Is Checked : <webobject name="IsCheckedValue"></webobject><br/>
|
||||
<br/>
|
||||
<webobject name="Form">
|
||||
<webobject name="ACheckBox"></webobject>Check Me !
|
||||
<webobject name="SubmitButton"></webobject>
|
||||
</webobject>
|
||||
<hr/>
|
||||
<webobject name="MainPageLink"></webobject>
|
||||
</body>
|
||||
</html>
|
28
Testing/DynamicElements/CheckBox2Page.wo/CheckBox2Page.wod
Normal file
28
Testing/DynamicElements/CheckBox2Page.wo/CheckBox2Page.wod
Normal file
|
@ -0,0 +1,28 @@
|
|||
|
||||
ACheckBox: WOCheckBox
|
||||
{
|
||||
selection = checkBoxValue;
|
||||
checked = isChecked;
|
||||
};
|
||||
|
||||
IsCheckedValue: WOString
|
||||
{
|
||||
value = isChecked;
|
||||
};
|
||||
MainPageLink: WOHyperlink
|
||||
{
|
||||
pageName = "Main";
|
||||
string = "Main Page";
|
||||
};
|
||||
|
||||
Form: WOForm
|
||||
{
|
||||
enctype = "multipart/form-data";
|
||||
};
|
||||
|
||||
SubmitButton: WOSubmitButton
|
||||
{
|
||||
action = submitAction;
|
||||
value = "Submit";
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue