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
<h1>Standard Controls</h1>
4
<p>* the tutorial for this control is not completed yet.</p>
5
<ul id="u1" class="block-content">
6
  <li>
7
  <a href="?page=Controls.Button">TButton</a> represents a click button on a Web page. It is mainly used to trigger page postback.
8
  </li>
9
 
10
  <li>
11
  <a href="?page=Controls.Captcha">TCaptcha</a> displays a CAPTCHA to keep spammers from signing up for certain accounts online.
12
  </li>
13
 
14
  <li>
15
  <a href="?page=Controls.CheckBox">TCheckBox</a> represents a checkbox on a Web page. It can be used to collect two-state user input.
16
  </li>
17
 
18
  <li>
19
  <a href="?page=Controls.ClientScript">TClientScript</a> adds javascript code to the page.
20
  </li>
21
 
22
  <li>
23
  <a href="?page=Controls.ClientScriptLoader">TClientScriptLoader</a> loads custom javascript libraries.
24
  </li>
25
 
26
  <li>*
27
  <a href="?page=Controls.ColorPicker">TColorPicker</a> represents an input field taking color values via a color dialog.
28
  </li>
29
 
30
  <li>
31
  <a href="?page=Controls.Conditional">TConditional</a> displays content corresponding to true or false result of a PHP expression.
32
  </li>
33
 
34
  <li>
35
  <a href="?page=Controls.DatePicker">TDatePicker</a> represents an input field taking date values via a calendar dialog.
36
  </li>
37
 
38
  <li>
39
  <a href="?page=Controls.Expression">TExpression</a> accepts a PHP expression and displays the evaluation result on a Web page.
40
  </li>
41
 
42
  <li>
43
  <a href="?page=Controls.FileUpload">TFileUpload</a> represents a file upload field. It allows users to upload a file to server.
44
  </li>
45
 
46
  <li>*
47
  <a href="?page=Controls.Head">THead</a> represents the &lt;head&gt; element on an HTML Web page. It is required by a PRADO page should it use themes.
48
  </li>
49
 
50
  <li>
51
  <a href="?page=Controls.HiddenField">THiddenField</a> represents a hidden input field on a Web page.
52
  </li>
53
 
54
  <li>
55
  <a href="?page=Controls.HtmlArea">THtmlArea</a> represents a WYSIWYG text input field taking user input that are in HTML format.
56
  </li>
57
 
58
  <li>
59
  <a href="?page=Controls.HyperLink">THyperLink</a> represents a hyperlink on a Web page.
60
  </li>
61
 
62
  <li>
63
  <a href="?page=Controls.Image">TImage</a> represents an image on a Web page.
64
  </li>
65
 
66
  <li>
67
  <a href="?page=Controls.ImageButton">TImageButton</a> represents a click button that has an image as the background. It is mainly used to trigger page postback.
68
  </li>
69
 
70
  <li>
71
  <a href="?page=Controls.ImageMap">TImageMap</a> represents an image on a Web page with clickable hotspot regions.
72
  </li>
73
 
74
  <li>
75
  <a href="?page=Controls.InlineFrame">TInlineFrame</a> represents an &lt;iframe&gt; HTML element on a Web page.
76
  </li>
77
 
78
  <li>
79
  <a href="?page=Controls.JavascriptLogger">TJavascriptLogger</a> represents a logger on a Web page that can log various JavaScript information.
80
  </li>
81
 
82
  <li>
83
  <a href="?page=Controls.Keyboard">TKeyboard</a> displays a virtual keyboard for users to enter input into a text box.
84
  </li>
85
 
86
  <li>
87
  <a href="?page=Controls.Label">TLabel</a> represents a label on a Web page. The label can be customized via various CSS attributes.
88
  </li>
89
 
90
  <li>
91
  <a href="?page=Controls.LinkButton">TLinkButton</a> represents a hyperlink that can perform page postbacks.
92
  </li>
93
 
94
  <li>
95
  <a href="?page=Controls.Literal">TLiteral</a> represents a static text without any HTML tag surrounding it on a Web page.
96
  </li>
97
 
98
  <li>
99
  <a href="?page=Controls.MultiView">TMultiView</a> represents a container for a group of <tt>TView</tt> controls, each of which is container for other controls. At any time, at most one <tt>TView</tt> is visible.
100
  </li>
101
 
102
  <li>
103
  <a href="?page=Controls.OutputCache">TOutputCache</a> enables caching portions of page output and may significantly improve page response time.
104
  </li>
105
 
106
  <li>
107
  <a href="?page=Controls.Pager">TPager</a> generates UI that allows users to interactively specify which page of data to be displayed in a data-bound control.
108
  </li>
109
 
110
  <li>
111
  <a href="?page=Controls.Panel">TPanel</a> represents a container for other controls on a Web page. In HTML, it is displayed as a &lt;div&gt; element.
112
  </li>
113
 
114
  <li>
115
  <a href="?page=Controls.PlaceHolder">TPlaceHolder</a> reserves a place on a control template. It inserts its body content at that place.
116
  </li>
117
 
118
  <li>
119
  <a href="?page=Controls.RadioButton">TRadioButton</a> represents a radiobutton on a Web page. It is mainly used in a group from which users make a choice.
120
  </li>
121
 
122
  <li>
123
  <a href="?page=Controls.SafeHtml">TSafeHtml</a> displays its body content with assurance that the content contain no harmful code (such as <a href="?page=Advanced.Security">XSS</a>).
124
  </li>
125
 
126
  <li>
127
  <a href="?page=Controls.Slider">TSlider</a> represents a Slider control
128
  </li>
129
 
130
  <li>
131
  <a href="?page=Controls.Statements">TStatements</a> accepts a few PHP statements and displays their standard output on the Web page.
132
  </li>
133
 
134
  <li>
135
  <a href="?page=Controls.Table">TTable</a> represents an HTML table on a Web page. It is used together with <tt>TTableRow</tt> and <tt>TTableCell</tt>.
136
  </li>
137
 
138
  <li>
139
  <a href="?page=Controls.TabPanel">TTabPanel</a> displays a tabbed panel consisting of multiple tab views. At any time, only one tab view is visible.
140
  </li>
141
  <li>
142
  <a href="?page=Controls.TextBox">TTextBox</a> represents a text input field on a Web page. It can collect single-line, multi-line or password text input from users.
143
  </li>
144
 
145
  <li>
146
  <a href="?page=Controls.TextHighlighter">TTextHighlighter</a> highlights its body content according to the specified syntax highlighter, such as PHP, XML, PRADO, etc.
147
  </li>
148
 
149
  <li>
150
  <a href="?page=Controls.Wizard">TWizard</a> represents a multi-step form that can take user input step by step. It resembles to Windows installation wizards.
151
  </li>
152
</ul>
153
 
154
<div class="last-modified">$Id: Standard.page 2236 2007-09-24 16:03:13Z xue $</div></com:TContent>