diff options
author | ctrlaltca@gmail.com <> | 2011-06-01 20:01:35 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-06-01 20:01:35 +0000 |
commit | 8ce0a1d0f2b67eaf998aca58913cf87652b4b0d5 (patch) | |
tree | d1b0cceb60c6262727ea78efe2bfe65ce0e5a49e | |
parent | ad30a2e5e2bbe11908a78e7731ed5d2d8c55c9b9 (diff) |
added documentation for THead class
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Head.page | 34 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Standard.page | 2 | ||||
-rw-r--r-- | framework/Web/UI/WebControls/THead.php | 2 |
3 files changed, 35 insertions, 3 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Head.page b/demos/quickstart/protected/pages/Controls/Head.page index 7e4a19ec..594bb069 100644 --- a/demos/quickstart/protected/pages/Controls/Head.page +++ b/demos/quickstart/protected/pages/Controls/Head.page @@ -4,7 +4,39 @@ <com:DocLink ClassPath="System.Web.UI.WebControls.THead" />
<p id="310261" class="block-content">
-TBD
+<tt>THead</tt> displays a head element on a page. It displays the content
+enclosed in its body and the page title set by the <tt>Title</tt> property.
+</p>
+
+<p class="block-content">
+In addition, stylesheets and JavaScripts registered via
+<ul>
+ <li><tt>TClientScriptManager::registerStyleSheet</tt>,</li>
+ <li><tt>TClientScriptManager::registerStyleSheetFile</tt>,</li>
+ <li><tt>TClientScriptManager::registerHeadJavaScript</tt> and</li>
+ <li><tt>TClientScriptManager::registerHeadJavaScriptFile</tt></li>
+</ul>
+will also be displayed in the head.</p>
+
+<p class="block-content">
+THead also manages and displays meta tags through its <tt>MetaTags</tt>
+property. You can add a meta object to the collection in code dynamically,
+or add it in template using the following syntax
+</p>
+
+<com:TTextHighlighter Language="text" CssClass="source block-content">
+<com:THead>
+ <com:TMetaTag HttpEquiv="Pragma" Content="no-cache" />
+ <com:TMetaTag Name="keywords" Content="Prado" />
+</com:THead>
+</com:TTextHighlighter>
+
+<p class="block-content">
+Note, <tt>TPage</tt> has a property <tt>Head</tt> that refers to
+the <tt>THead</tt> control currently on the page. A page can have at most one <tt>THead</tt>
+control. Although not required, it is recommended to place a <tt>THead</tt> on your page.
+Without a <tt>THead</tt> on the page, stylesheets and javascripts in the current page
+theme will not be rendered.
</p>
<div class="last-modified">$Id$</div></com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Standard.page b/demos/quickstart/protected/pages/Controls/Standard.page index 38a541ca..9fde5a29 100644 --- a/demos/quickstart/protected/pages/Controls/Standard.page +++ b/demos/quickstart/protected/pages/Controls/Standard.page @@ -43,7 +43,7 @@ <a href="?page=Controls.FileUpload">TFileUpload</a> represents a file upload field. It allows users to upload a file to server.
</li>
- <li>*
+ <li>
<a href="?page=Controls.Head">THead</a> represents the <head> element on an HTML Web page. It is required by a PRADO page should it use themes.
</li>
diff --git a/framework/Web/UI/WebControls/THead.php b/framework/Web/UI/WebControls/THead.php index 36b81648..9daa6d3b 100644 --- a/framework/Web/UI/WebControls/THead.php +++ b/framework/Web/UI/WebControls/THead.php @@ -31,7 +31,7 @@ * </code>
*
* Note, {@link TPage} has a property {@link TPage::getHead Head} that refers to
- * the THead control currently on the page. A page can have at most once THead
+ * the THead control currently on the page. A page can have at most one THead
* control. Although not required, it is recommended to place a THead on your page.
* Without a THead on the page, stylesheets and javascripts in the current page
* theme will not be rendered.
|