summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Data.page
blob: 829a4ef524b1081a0e28ce23b7311605d4e0b949 (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
<com:TContent ID="body" >

<h1 id="5001">Data Controls</h1>

<p class="block-content">
Data controls are used to display a repeated content like a list or a table. The content is generated from a collection of items containing the data, called the <tt>DataSource</tt>, and a template describing the appearance, called <tt>Renderer</tt>.
<br/>
The process of assigning a DataSource to a Data control and render the template for each item is called <tt>data binding</tt>.
</p>

<ul id="u1" class="block-content">
  <li>
  <a href="?page=Controls.DataList">TDataList</a> is used to display or modify a list of data items.
  </li>

  <li>
  <a href="?page=Controls.DataGrid">TDataGrid</a> displays data in a tabular format with rows and columns.
  </li>

  <li>
  <a href="?page=Controls.Repeater">TRepeater</a> displays its content defined in templates repeatedly based on the given data.
  </li>
</ul>

</com:TContent>