Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<com:TContent ID="body">
2
 
3
<h2>Using Templated Wizard Steps</h2>
4
 
5
<com:TWizard ID="Wizard1"
6
		BackColor="#FFFBD6"
7
		Width="400px"
8
		SideBarStyle.Width="120px"
9
        HeaderText="Please let us know your preference"
10
		OnCompleteButtonClick="wizardCompleted" >
11
 
12
  <com:TWizardStep Title="Step 1">
13
    <p>
14
    Your favorite color:
15
    <com:TDropDownList ID="DropDownList1">
16
      <com:TListItem Value="Red" />
17
      <com:TListItem Value="Blue" />
18
      <com:TListItem Value="Green" />
19
      <com:TListItem Value="Purple" />
20
      <com:TListItem Value="Black" />
21
      <com:TListItem Value="Yellow" />
22
      <com:TListItem Value="Orange" />
23
      <com:TListItem Value="Pink" />
24
      <com:TListItem Value="Cyan" />
25
    </com:TDropDownList>
26
    </p>
27
  </com:TWizardStep>
28
 
29
  <com:TTemplatedWizardStep ID="Step2" Title="Templated Step">
30
    <prop:ContentTemplate>
31
      <p>
32
      Your favorite Sport:
33
      <com:TDropDownList ID="DropDownList2">
34
        <com:TListItem Value="Baseball" />
35
        <com:TListItem Value="Football" />
36
        <com:TListItem Value="Tennis" />
37
      </com:TDropDownList>
38
      </p>
39
    </prop:ContentTemplate>
40
  </com:TTemplatedWizardStep>
41
 
42
  <com:TWizardStep Title="Complete" StepType="Complete">
43
    <h3>Thank you for your answer!</h3>
44
    <p>
45
    <com:TLabel ID="Result1" /><br/><br/>
46
    <com:TLabel ID="Result2" />
47
    </p>
48
  </com:TWizardStep>
49
</com:TWizard>
50
 
51
<div class="last-modified">$Id: Sample5.page 1650 2007-01-24 06:55:32Z wei $</div></com:TContent>