summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls
diff options
context:
space:
mode:
authorwei <>2006-02-02 07:39:15 +0000
committerwei <>2006-02-02 07:39:15 +0000
commit94147abb50d8de017d6bf6831709310d285c6f79 (patch)
tree79ffd23870615feaa059df6f92940b4d2318677f /demos/quickstart/protected/pages/Controls
parent8bd494af7897077dea5da4b8e4c89025a2bc5fa8 (diff)
Add datagrid and repeater to prado3_quick_start.pdf
Diffstat (limited to 'demos/quickstart/protected/pages/Controls')
-rw-r--r--demos/quickstart/protected/pages/Controls/DataGrid1.page4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/Controls/DataGrid1.page b/demos/quickstart/protected/pages/Controls/DataGrid1.page
index 63f46754..63d55f8c 100644
--- a/demos/quickstart/protected/pages/Controls/DataGrid1.page
+++ b/demos/quickstart/protected/pages/Controls/DataGrid1.page
@@ -58,7 +58,7 @@ TDataGrid provides several events to facilitate manipulation of its items,
<h2>Using TDataGrid</h2>
-<h3>Automatically Generated Columns</h2>
+<h3>Automatically Generated Columns</h3>
<p>
TDataGrid by default will create a list of columns based on the structure of the bound data. TDataGrid will read the first row of the data, extract the field names of the row, and construct a column for each field. Each column is of type <tt>TBoundColumn</tt>.
</p>
@@ -76,7 +76,7 @@ public function onLoad($param) {
</com:TTextHighlighter>
<com:RunBar PagePath="Controls.Samples.TDataGrid.Sample1" />
-<h3>Manually Specified Columns</h2>
+<h3>Manually Specified Columns</h3>
<p>
Using automatically generated columns gives a quick way of browsing tabular data. In real applications, however, automatically generated columns are often not enough because developers have no way configuring their properties. Manually specified columns are thus more desirable.
</p>