summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/quickstart/protected/pages/Controls/ClientScript.page8
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/quickstart/protected/pages/Controls/ClientScript.page b/demos/quickstart/protected/pages/Controls/ClientScript.page
index 5dab41d5..7c643a82 100644
--- a/demos/quickstart/protected/pages/Controls/ClientScript.page
+++ b/demos/quickstart/protected/pages/Controls/ClientScript.page
@@ -1,8 +1,8 @@
<com:TContent ID="body" >
-<h1>TClientScript</h1>
+<h1 id="2201">TClientScript</h1>
<com:DocLink ClassPath="System.Web.UI.WebControls.TClientScript" />
-<h2>Including Bundled Javascript Libraries in Prado</h2>
+<h2 id="2202">Including Bundled Javascript Libraries in Prado</h2>
<p>
<tt>TClientScript</tt> allows javascript code to be insert or linked to the
page template. Prado is bundled with a large library of javascript functionality
@@ -32,7 +32,7 @@ to include on the page. For following example will include the "ajax" and "effec
<p>The dependencies for each library are automatically resolved. That is,
specifying, say the "ajax", will also include the "prado" library.</p>
-<h2>Including Custom Javascript Files</h2>
+<h2 id="2203">Including Custom Javascript Files</h2>
<p>Custom javascript files can be register using the <tt>ScriptUrl</tt> property.
The following example includes the javascript file "test.js" to the page. In this case, the file
"test.js" is relative the current template you are using. Since the property value is
@@ -45,7 +45,7 @@ automatically, that is, the file will be copied to the assets directory if neces
<p>You can include javascript files from other servers by specifying the full URL string in
the <tt>ScriptUrl</tt> property.</p>
-<h2>Including Custom Javascript Code Blocks</h2>
+<h2 id="2204">Including Custom Javascript Code Blocks</h2>
<p> Any content within the <tt>TClientScript</tt> control tag will be considered as
javascript code and will be rendered where it is declared.</p>