blob: 7bf583fb11df7addeb204f450b6ccdaa1f6c22f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<com:TContent ID="Content">
<h2>Customized Wizard Template Sample</h2>
<com:TWizard ID="Wizard1"
BackColor="OldLace"
Width="400px"
SideBarStyle.Width="120px"
StepStyle.BackColor="#FFFBD6"
HeaderStyle.BackColor="Moccasin"
NavigationStyle.BackColor="PaleGoldenrod"
OnActiveStepChanged="wizardCompleted" >
<prop:HeaderTemplate>
<i>Header Template</i>
<br/>
<b>Step <%= $this->Parent->ActiveStepIndex+1 %> of 3</b>
</prop:HeaderTemplate>
<prop:SideBarTemplate>
<i>SideBar Template</i>
<br/>
<com:TDataList ID="SideBarList">
<prop:ItemTemplate>
<com:TButton ID="SideBarButton" />
</prop:ItemTemplate>
<prop:SelectedItemTemplate>
<com:TButton ID="SideBarButton" Font.Bold="true" />
</prop:SelectedItemTemplate>
</com:TDataList>
</prop:SideBarTemplate>
<prop:StartNavigationTemplate>
<com:TLinkButton CommandName="NextStep" Text="Next >" /> ||
<com:TLinkButton CommandName="MoveTo" CommandParameter="WizardStep3" Text="Go to step 3"/>
<br/>
<i>Start Navigation Template</i>
</prop:StartNavigationTemplate>
<prop:StepNavigationTemplate>
<com:TLinkButton CausesValidation="False" CommandName="PreviousStep" Text="< Previous" />
<com:TLinkButton CommandName="NextStep" Text="Next >" />
<br/>
<i>Step Navigation Template</i>
</prop:StepNavigationTemplate>
<prop:FinishNavigationTemplate>
All navigation buttons are removed.
<br/>
<i>Step Navigation Template</i>
</prop:FinishNavigationTemplate>
<com:TWizardStep ID="WizardStep1" Title="Step 1">
<i>Wizard Step Content</i>
<br/><br/>
Your favorite color:
<com:TDropDownList ID="DropDownList1">
<com:TListItem Value="Red" />
<com:TListItem Value="Blue" />
<com:TListItem Value="Green" />
<com:TListItem Value="Purple" />
<com:TListItem Value="Black" />
<com:TListItem Value="Yellow" />
<com:TListItem Value="Orange" />
<com:TListItem Value="Pink" />
<com:TListItem Value="Cyan" />
</com:TDropDownList>
<br/><br/>
</com:TWizardStep>
<com:TWizardStep ID="WizardStep2" Title="Step 2">
<i>Wizard Step Content</i>
<br/><br/>
<com:TLabel ID="Result" />
<br/><br/>
</com:TWizardStep>
<com:TWizardStep ID="WizardStep3" Title="Step 3">
<i>Wizard Step Content</i>
<br/><br/>
Thank you for completing this survey.<br />
<br/><br/>
</com:TWizardStep>
</com:TWizard>
<div class="last-modified">$Id: Sample4.page 1650 2007-01-24 06:55:32Z wei $</div></com:TContent>
|