diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/DataGrid1.page | 2 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample1.page | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/Controls/DataGrid1.page b/demos/quickstart/protected/pages/Controls/DataGrid1.page index 63d55f8c..27e5a777 100644 --- a/demos/quickstart/protected/pages/Controls/DataGrid1.page +++ b/demos/quickstart/protected/pages/Controls/DataGrid1.page @@ -92,7 +92,7 @@ To manually specify columns, set <tt>AutoGenerateColumns</tt> to false, and spec </com:TDataGrid>
</com:TTextHighlighter>
<p>
-Note, if <tt>AutoGenerateColumns</tt> is true and there are manually specified columns, the automatically generated columns will be displayed first. Also note, the datagrid's <tt>Columns</tt> property only contains manually specified columns.
+Note, if <tt>AutoGenerateColumns</tt> is true and there are manually specified columns, the automatically generated columns will be appended to the manually specified columns. Also note, the datagrid's <tt>Columns</tt> property only contains manually specified columns.
</p>
<com:RunBar PagePath="Controls.Samples.TDataGrid.Sample2" />
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample1.page b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample1.page index 05ba4630..5b5f0a1c 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample1.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample1.page @@ -1,10 +1,11 @@ <com:TContent ID="body">
<h1>TDataGrid Sample 1</h1>
-<h2>Automatically Generated Columns</h2>
+<h2>Using Automatically Generated Columns</h2>
<com:TDataGrid
ID="DataGrid"
+ EnableViewState="false"
HeaderStyle.BackColor="silver"
ItemStyle.BackColor="lightblue"
ItemStyle.Font.Italic="true"
|