summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-06-02 19:38:10 +0000
committerctrlaltca@gmail.com <>2011-06-02 19:38:10 +0000
commit91cb43a795263a69000564be15155e96dfdca29f (patch)
tree69a3fc5b239977d5fd62ab247c2563124489c62c /demos
parent0daa38a4f5bb43d7332d681a98ccb693bc579230 (diff)
fixed page script, updated version number for quickstart pdf, ran build scripts to generate ids
Diffstat (limited to 'demos')
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveDataGrid.page12
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveDataList.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveDatePicker.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveFileUpload.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveHiddenField.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ActiveRepeater.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/Callback.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/CallbackClientScript.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/CallbackClientSide.page6
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/CallbackEventParameter.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/EventTriggeredCallback.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/Home.page12
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/InPlaceTextBox.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/TimeTriggeredCallback.page2
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/ValueTriggeredCallback.page2
-rw-r--r--demos/quickstart/protected/pages/Controls/Captcha.page2
-rw-r--r--demos/quickstart/protected/pages/Controls/Conditional.page2
-rw-r--r--demos/quickstart/protected/pages/Controls/Keyboard.page2
-rw-r--r--demos/quickstart/protected/pages/Controls/List.page2
23 files changed, 35 insertions, 35 deletions
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page b/demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page
index 2560ece5..a18bc62d 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveCheckBoxList</h1>
+<h1 id="146002">TActiveCheckBoxList</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveCheckBoxList" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveDataGrid.page b/demos/quickstart/protected/pages/ActiveControls/ActiveDataGrid.page
index 9a82743d..a1884cf9 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveDataGrid.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveDataGrid.page
@@ -34,16 +34,16 @@ Please refer to the original documentation of <a href="?page=Controls.DataGrid">
</p>
-<h2>Columns</h2>
+<h2 id="152004">Columns</h2>
-<h3>Automatically Generated Columns</h3>
+<h3 id="152008">Automatically Generated Columns</h3>
<p class="block-content">
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>TActiveBoundColumn</tt>. All of this happens in an ajax callback.
</p>
<com:RunBar PagePath="ActiveControls.Samples.TActiveDataGrid.Sample1" />
-<h3>Manually Specified Columns</h3>
+<h3 id="152009">Manually Specified Columns</h3>
<p class="block-content">
The following example uses manually specified columns to show a list of book information,
</p>
@@ -60,7 +60,7 @@ Each column can be shown or hidden in a callback.
<com:RunBar PagePath="ActiveControls.Samples.TActiveDataGrid.Sample2" />
-<h2>Interacting with TActiveDataGrid</h2>
+<h2 id="152005">Interacting with TActiveDataGrid</h2>
<p class="block-content">
The following example shows how to make the previous book information table an interactive one. It allows users to edit and delete book items from the table. Two additional columns are used in the example to allow users interact with the datagrid: <tt>TActiveEditCommandColumn</tt> and <tt>TActiveButtonColumn</tt>. In addition,
<tt>TActiveDropDownListColumn</tt> replaces the previous <tt>TActiveTemplateColumn</tt> to allow users to select a rating from a dropdown list. Note, it is also possible to use <tt>TActiveTemplateColumn</tt> to achieve the same task.
@@ -68,13 +68,13 @@ All the iteration is done using AJAX callbacks.
</p>
<com:RunBar PagePath="ActiveControls.Samples.TActiveDataGrid.Sample3" />
-<h2>Sorting</h2>
+<h2 id="152006">Sorting</h2>
<p class="block-content">
The following example turns the datagrid in <a href="?page=ActiveControls.Samples.TActiveDataGrid.Sample2">Example 2</a> into a sortable one. Users can click on the link button displayed in the header of any column, and the data will be sorted in ascending order along that column. The grid is sorted and rendered upon a callback request.
</p>
<com:RunBar PagePath="ActiveControls.Samples.TActiveDataGrid.Sample4" />
-<h2>Paging</h2>
+<h2 id="152007">Paging</h2>
<p class="block-content">
The following example enables the paging functionality of the datagrid shown in <a href="?page=ActiveControls.Samples.TActiveDataGrid.Sample1">Example 1</a>. In this example, you move between the datagrid pages clicking on the pager links. The grid reacts to paging rendering itself as the result of a callback request. Note that you can't change the pager style upon callback.
</p>
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveDataList.page b/demos/quickstart/protected/pages/ActiveControls/ActiveDataList.page
index 12fb941f..57cd79f0 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveDataList.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveDataList.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveDataList</h1>
+<h1 id="150003">TActiveDataList</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveDataList" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveDatePicker.page b/demos/quickstart/protected/pages/ActiveControls/ActiveDatePicker.page
index 774a84b3..93b095d4 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveDatePicker.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveDatePicker.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveDatePicker</h1>
+<h1 id="154010">TActiveDatePicker</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveDatePicker" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page b/demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page
index 4400c552..dc09c16c 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveDropDownList</h1>
+<h1 id="156011">TActiveDropDownList</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveDropDownList" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveFileUpload.page b/demos/quickstart/protected/pages/ActiveControls/ActiveFileUpload.page
index 8bdb7cfe..275f1e2c 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveFileUpload.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveFileUpload.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveFileUpload</h1>
+<h1 id="158012">TActiveFileUpload</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveFileUpload" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveHiddenField.page b/demos/quickstart/protected/pages/ActiveControls/ActiveHiddenField.page
index 00077b59..f09a1c48 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveHiddenField.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveHiddenField.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveHiddenField</h1>
+<h1 id="160013">TActiveHiddenField</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveHiddenField" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page b/demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page
index 802c9fb1..61b77f62 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveListBox</h1>
+<h1 id="172014">TActiveListBox</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveListBox" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page b/demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page
index 6095a9d3..9e8ed4d5 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveRadioButtonList</h1>
+<h1 id="182015">TActiveRadioButtonList</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveRadioButtonList" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveRepeater.page b/demos/quickstart/protected/pages/ActiveControls/ActiveRepeater.page
index d22a7467..5a19c26d 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ActiveRepeater.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ActiveRepeater.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TActiveRepeater</h1>
+<h1 id="184016">TActiveRepeater</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveRepeater" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/Callback.page b/demos/quickstart/protected/pages/ActiveControls/Callback.page
index d37eb614..38d6eddf 100644
--- a/demos/quickstart/protected/pages/ActiveControls/Callback.page
+++ b/demos/quickstart/protected/pages/ActiveControls/Callback.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TCallback</h1>
+<h1 id="190017">TCallback</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TCallback" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/CallbackClientScript.page b/demos/quickstart/protected/pages/ActiveControls/CallbackClientScript.page
index 7ffd2db9..5913991c 100644
--- a/demos/quickstart/protected/pages/ActiveControls/CallbackClientScript.page
+++ b/demos/quickstart/protected/pages/ActiveControls/CallbackClientScript.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TCallbackClientScript</h1>
+<h1 id="192018">TCallbackClientScript</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TCallbackClientScript" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/CallbackClientSide.page b/demos/quickstart/protected/pages/ActiveControls/CallbackClientSide.page
index c8e52585..11ccffe6 100644
--- a/demos/quickstart/protected/pages/ActiveControls/CallbackClientSide.page
+++ b/demos/quickstart/protected/pages/ActiveControls/CallbackClientSide.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TCallbackClientSide</h1>
+<h1 id="194019">TCallbackClientSide</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TCallbackClientSide" />
<p class="block-content">
@@ -25,7 +25,7 @@ The following example demonstrates the toggling of a "loading" indicator when th
&lt;/com:TActiveButton&gt;
</com:TTextHighlighter>
-<h3>Events</h3>
+<h3 id="194020">Events</h3>
<p class="block-content">
The following client side events are executing in order if the callback
@@ -58,7 +58,7 @@ response is returned. A successful request/response will raise
OnSuccess event otherwise OnFailure will be raised.
</p>
-<h3>Properties</h3>
+<h3 id="194021">Properties</h3>
<p class="block-content">
The following properties can be used to change the way the callback request is performed.
diff --git a/demos/quickstart/protected/pages/ActiveControls/CallbackEventParameter.page b/demos/quickstart/protected/pages/ActiveControls/CallbackEventParameter.page
index e99a2d40..6fa6a9d2 100644
--- a/demos/quickstart/protected/pages/ActiveControls/CallbackEventParameter.page
+++ b/demos/quickstart/protected/pages/ActiveControls/CallbackEventParameter.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TCallbackEventParameter</h1>
+<h1 id="196022">TCallbackEventParameter</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TCallbackEventParameter" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/EventTriggeredCallback.page b/demos/quickstart/protected/pages/ActiveControls/EventTriggeredCallback.page
index 170fa295..bf9fa5be 100644
--- a/demos/quickstart/protected/pages/ActiveControls/EventTriggeredCallback.page
+++ b/demos/quickstart/protected/pages/ActiveControls/EventTriggeredCallback.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TEventTriggeredCallback</h1>
+<h1 id="202023">TEventTriggeredCallback</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TEventTriggeredCallback" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/Home.page b/demos/quickstart/protected/pages/ActiveControls/Home.page
index 1a216db6..8aec52c0 100644
--- a/demos/quickstart/protected/pages/ActiveControls/Home.page
+++ b/demos/quickstart/protected/pages/ActiveControls/Home.page
@@ -380,7 +380,7 @@ realize the active controls. They can be useful to develop new active controls,
to use them.</p>
<ul id="u4" class="block-content">
<li>
- <h3>TActiveControlAdapter</h3>
+ <h3 id="210028">TActiveControlAdapter</h3>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveControlAdapter" />
<p class="block-content">
<tt>TActiveControlAdapter</tt> customizes the parent TControl class for active control classes.
@@ -390,7 +390,7 @@ to use them.</p>
</li>
<li>
- <h3>TActiveListControlAdapter</h3>
+ <h3 id="210029">TActiveListControlAdapter</h3>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActiveListControlAdapter" />
<p class="block-content">
<tt>TActiveListControlAdapter</tt> allows the adapted list controls to change the selections
@@ -399,7 +399,7 @@ to use them.</p>
</li>
<li>
- <h3>TActivePageAdapter</h3>
+ <h3 id="210030">TActivePageAdapter</h3>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TActivePageAdapter" />
<p class="block-content">
<tt>TActivePageAdapter</tt> process the page life-cycle for callback requests.
@@ -407,7 +407,7 @@ to use them.</p>
</li>
<li>
- <h3>TBaseActiveControl</h3>
+ <h3 id="210031">TBaseActiveControl</h3>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TBaseActiveControl" />
<p class="block-content">
<tt>TBaseActiveControl</tt> class provided additional basic properties common for every
@@ -421,7 +421,7 @@ to use them.</p>
</li>
<li>
- <h3>TCallbackResponseAdapter</h3>
+ <h3 id="210032">TCallbackResponseAdapter</h3>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TCallbackResponseAdapter" />
<p class="block-content">
<tt>TCallbackResponseAdapter</tt> alters the <tt>THttpResponse</tt>'s outputs.
@@ -435,7 +435,7 @@ to use them.</p>
</ul>
-<h2>Active Control Infrastructure Advanced Classes</h2>
+<h2 id="210027">Active Control Infrastructure Advanced Classes</h2>
<p class="block-content">The following classes provide advanced properties and events needed to realize the active controls.
A Prado user can use them to customize active controls behaviour and interact directly with the client side during a callback.
</p>
diff --git a/demos/quickstart/protected/pages/ActiveControls/InPlaceTextBox.page b/demos/quickstart/protected/pages/ActiveControls/InPlaceTextBox.page
index 2349d255..67c214f8 100644
--- a/demos/quickstart/protected/pages/ActiveControls/InPlaceTextBox.page
+++ b/demos/quickstart/protected/pages/ActiveControls/InPlaceTextBox.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TInPlaceTextBox</h1>
+<h1 id="204024">TInPlaceTextBox</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TInPlaceTextBox" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/TimeTriggeredCallback.page b/demos/quickstart/protected/pages/ActiveControls/TimeTriggeredCallback.page
index 3239f931..84f1509b 100644
--- a/demos/quickstart/protected/pages/ActiveControls/TimeTriggeredCallback.page
+++ b/demos/quickstart/protected/pages/ActiveControls/TimeTriggeredCallback.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TTimeTriggeredCallback</h1>
+<h1 id="206025">TTimeTriggeredCallback</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TTimeTriggeredCallback" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/ActiveControls/ValueTriggeredCallback.page b/demos/quickstart/protected/pages/ActiveControls/ValueTriggeredCallback.page
index c05d6a20..16e6dbe1 100644
--- a/demos/quickstart/protected/pages/ActiveControls/ValueTriggeredCallback.page
+++ b/demos/quickstart/protected/pages/ActiveControls/ValueTriggeredCallback.page
@@ -1,6 +1,6 @@
<com:TContent ID="body" >
-<h1>TValueTriggeredCallback</h1>
+<h1 id="208026">TValueTriggeredCallback</h1>
<com:DocLink ClassPath="System.Web.UI.ActiveControls.TValueTriggeredCallback" />
<p class="block-content">
diff --git a/demos/quickstart/protected/pages/Controls/Captcha.page b/demos/quickstart/protected/pages/Controls/Captcha.page
index 6810d2a2..74184050 100644
--- a/demos/quickstart/protected/pages/Controls/Captcha.page
+++ b/demos/quickstart/protected/pages/Controls/Captcha.page
@@ -30,7 +30,7 @@ Upon postback, user input can be validated by calling the method <tt>TCaptcha.va
<p id="280007" class="block-content">
The following template shows a typical use of the <tt>TCaptcha</tt> control:
</p>
-<com:TTextHighlighter Language="prado" CssClass="source block-content" id="code-280105">
+<com:TTextHighlighter Language="prado" CssClass="source block-content" id="code_280105">
&lt;com:TCaptcha ID="Captcha" />
&lt;com:TTextBox ID="Input" />
&lt;com:TCaptchaValidator CaptchaControl="Captcha"
diff --git a/demos/quickstart/protected/pages/Controls/Conditional.page b/demos/quickstart/protected/pages/Controls/Conditional.page
index a2662e86..55858a3b 100644
--- a/demos/quickstart/protected/pages/Controls/Conditional.page
+++ b/demos/quickstart/protected/pages/Controls/Conditional.page
@@ -23,7 +23,7 @@ objects that are available on or after the <tt>onInit</tt> lifecycle.
A typical usage of TConditional is shown as following:
</p>
-<com:TTextHighlighter Language="prado" CssClass="source block-content" id="code-320112">
+<com:TTextHighlighter Language="prado" CssClass="source block-content" id="code_320112">
&lt;com:TConditional Condition="$this->User->IsGuest">
&lt;prop:TrueTemplate>
<a href="path/to/login">Login</a>
diff --git a/demos/quickstart/protected/pages/Controls/Keyboard.page b/demos/quickstart/protected/pages/Controls/Keyboard.page
index 47e15e78..5f5d2c6b 100644
--- a/demos/quickstart/protected/pages/Controls/Keyboard.page
+++ b/demos/quickstart/protected/pages/Controls/Keyboard.page
@@ -11,7 +11,7 @@ an associated text box. It helps to reduce the keyboard recording hacking.
<p id="460011" class="block-content">
To use TKeyboard, write a template like following:
</p>
-<com:TTextHighlighter Language="prado" CssClass="source block-content" id="code-460120">
+<com:TTextHighlighter Language="prado" CssClass="source block-content" id="code_460120">
&lt;com:TTextBox ID="PasswordInput" />
&lt;com:TKeyboard ForControl="PasswordInput" />
</com:TTextHighlighter>
diff --git a/demos/quickstart/protected/pages/Controls/List.page b/demos/quickstart/protected/pages/Controls/List.page
index c68a477f..5c6cb8e1 100644
--- a/demos/quickstart/protected/pages/Controls/List.page
+++ b/demos/quickstart/protected/pages/Controls/List.page
@@ -101,7 +101,7 @@ Since v3.1.1, <tt>TDropDownList</tt> starts to support prompt text (something li
<com:RunBar PagePath="Controls.Samples.TBulletedList.Home" />
-<h2>TRatingList</h2>
+<h2 id="130001">TRatingList</h2>
<com:DocLink ClassPath="System.Web.UI.WebControls.TRatingList" />
<p class="block-content">