/[Apache-SVN]/myfaces/site/tlddoc/wap/tld-summary.html
ViewVC logotype

Diff of /myfaces/site/tlddoc/wap/tld-summary.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- myfaces/site/tlddoc/wap/tld-summary.html	2005/05/08 15:47:03	169137
+++ myfaces/site/tlddoc/wap/tld-summary.html	2005/05/08 15:50:34	169138
@@ -83,18 +83,18 @@
 <td colspan="2"><font size="+2"><b>Tag Summary</b></font></td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="message.html">message</a></b></td><td>
-      Render a single message for a specific component. Set-up for Rendering Obtain the "summary" and "detail" properties fromUIMessage component. If not present, keep the empty string as the value, respectively. Obtain the firstFacesMessage to render from the component, using the "for" property of the UIMessage. This will be the only message we render. Rendering For the message renderer, we only render one row, for the first message. For the messages renderer, we render as many rows as we have messages.
+<td width="15%"><b><a href="column.html">column</a></b></td><td>
+      Renders a UIComponent that represents a single column of data within a parent UIData component.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="graphicImage.html">graphicImage</a></b></td><td>
-      Renders an WML "img" element. Render the value of the component as the value of the "src" attribute, after passing it to the getResourceURL() method of the ViewHandler for this application, and passing the result through the encodeResourceURL() method of theExternalContext. Render the value of the alt attribute as the value of the "alt" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute.
+<td width="15%"><b><a href="commandButton.html">commandButton</a></b></td><td>
+      This control can by rendered as a graphical button(PDA) or item in menu(mobile phones). The final view is depend on client browser. This element must be a childern of UIForm component. Decode Behavior Obtain the Map from the "requestParameterMap" property of the ExternalContext. If the value in theMap for the value of the "clientId" property of the component is not null, get the value of the "type" attribute, and convert it to lower case. If the result is equal to the String "reset" (without the quotes), return fromdecode(). Otherwise, create ajavax.faces.event.ActionEvent around the component, and pass it to the queueEvent() method of the component, which must be an instance ofUICommand. Encode Behavior Wml don't contain submit button tag. This element is rendered using "do" and "go" wml tags. If is the button attribute type set to "reset", then is command button rendered as "do" and "setvar" tags. For reset is not needed reload the page.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="selectOne.html">selectOne</a></b></td><td>
-      Renders a option list. Renders select tag with one option element. Render the clientId of the component as the value of the "name" attribute. Render "false" as the value of the "multiple" attribute.
+<td width="15%"><b><a href="commandLink.html">commandLink</a></b></td><td>
+      Render an WML "a" anchor element that acts like a form submit button when clicked. This element must be a childern of UIForm component. Decode Behavior Obtain the Map from the "requestParameterMap" property of the ExternalContext. If the value in theMap for the value of the "clientId" property of the component is not null, get the value of the "type" attribute, and convert it to lower case. If the result is equal to the String "reset" (without the quotes), return fromdecode(). Otherwise, create ajavax.faces.event.ActionEvent around the component, and pass it to the queueEvent() method of the component, which must be an instance ofUICommand. Encode Behavior Wml don't contain submit button tag. This element is rendered using "do" and "go" wml tags.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
@@ -108,48 +108,48 @@
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="outputText.html">outputText</a></b></td><td>
-      If the "styleClass" attribute is present, render its value as the value of the "class" attribute. If the "escape" attribute is not present, or it is present and its value is "true" all angle brackets should be converted to the ampersand xx semicolon syntax when rendering the value of the "value" attribute as the value of the component. If the "escape" attribute is present and is "false" the value of the component should be rendered as text without escaping.
+<td width="15%"><b><a href="graphicImage.html">graphicImage</a></b></td><td>
+      Renders an WML "img" element. Render the value of the component as the value of the "src" attribute, after passing it to the getResourceURL() method of the ViewHandler for this application, and passing the result through the encodeResourceURL() method of theExternalContext. Render the value of the alt attribute as the value of the "alt" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="panelGrid.html">panelGrid</a></b></td><td>
-      Renders an WML table element. Required attribute is "column" what sets number of colums in the table. Render the "header" and a "footer" facet if present, as the first or last row of the table. Render the children based on the value of the "columns" attribute, creating a new row each time a "columns" worth of children have been rendered. Each child is rendered inside of a "td" element. If a child has "rendered==false" it is not rendered, and the column counter must not be incremented.
+<td width="15%"><b><a href="inputSecret.html">inputSecret</a></b></td><td>
+      The inputSecret tag represents an security input field (a text field where the user can enter some text). Default value sets the attribute "value". If the "styleClass" attribute is present, render its value as the value of the "class" attribute.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="selectMany.html">selectMany</a></b></td><td>
-      Renders a option list. Renders select tag with one option element. Render the clientId of the component as the value of the "name" attribute. Render "true" as the value of the "multiple" attribute.
+<td width="15%"><b><a href="inputText.html">inputText</a></b></td><td>
+      The inputText tag represents an input field (a text field where the user can enter some text). Default value sets the attribute "value". If the "styleClass" attribute is present, render its value as the value of the "class" attribute.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="commandButton.html">commandButton</a></b></td><td>
-      This control can by rendered as a graphical button(PDA) or item in menu(mobile phones). The final view is depend on client browser. This element must be a childern of UIForm component. Decode Behavior Obtain the Map from the "requestParameterMap" property of the ExternalContext. If the value in theMap for the value of the "clientId" property of the component is not null, get the value of the "type" attribute, and convert it to lower case. If the result is equal to the String "reset" (without the quotes), return fromdecode(). Otherwise, create ajavax.faces.event.ActionEvent around the component, and pass it to the queueEvent() method of the component, which must be an instance ofUICommand. Encode Behavior Wml don't contain submit button tag. This element is rendered using "do" and "go" wml tags. If is the button attribute type set to "reset", then is command button rendered as "do" and "setvar" tags. For reset is not needed reload the page.
+<td width="15%"><b><a href="message.html">message</a></b></td><td>
+      Render a single message for a specific component. Set-up for Rendering Obtain the "summary" and "detail" properties fromUIMessage component. If not present, keep the empty string as the value, respectively. Obtain the firstFacesMessage to render from the component, using the "for" property of the UIMessage. This will be the only message we render. Rendering For the message renderer, we only render one row, for the first message. For the messages renderer, we render as many rows as we have messages.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="outputLink.html">outputLink</a></b></td><td>
-      Render an WML "a" anchor element. The value of the component is rendered as the value of the "href" attribute. Any child UIParameter components are appended to the String to be output as the value of the "href" attribute as query parameters before rendering. The entire "href" string must be passed through a call to the encodeResourceURL() method of theExternalContext. The name of the UIParameter goes on the left hand side, and the value of the UIParameter on the right hand side. The name and the value must be URLEncoded. Each UIParameter instance is separeted by an ampersand, as dictated in the URL spec. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute.
+<td width="15%"><b><a href="messages.html">messages</a></b></td><td>
+      Render a single message for a specific component. Set-up for Rendering Obtain the "summary" and "detail" properties fromUIMessage component. If not present, keep the empty string as the value, respectively. Obtain the firstFacesMessage to render from the component, using the "for" property of the UIMessage. This will be the only message we render. Rendering For the message renderer, we only render one row, for the first message. For the messages renderer, we render as many rows as we have messages.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="column.html">column</a></b></td><td>
-      Renders a UIComponent that represents a single column of data within a parent UIData component.
+<td width="15%"><b><a href="outputLink.html">outputLink</a></b></td><td>
+      Render an WML "a" anchor element. The value of the component is rendered as the value of the "href" attribute. Any child UIParameter components are appended to the String to be output as the value of the "href" attribute as query parameters before rendering. The entire "href" string must be passed through a call to the encodeResourceURL() method of theExternalContext. The name of the UIParameter goes on the left hand side, and the value of the UIParameter on the right hand side. The name and the value must be URLEncoded. Each UIParameter instance is separeted by an ampersand, as dictated in the URL spec. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="inputText.html">inputText</a></b></td><td>
-      The inputText tag represents an input field (a text field where the user can enter some text). Default value sets the attribute "value". If the "styleClass" attribute is present, render its value as the value of the "class" attribute.
+<td width="15%"><b><a href="outputText.html">outputText</a></b></td><td>
+      If the "styleClass" attribute is present, render its value as the value of the "class" attribute. If the "escape" attribute is not present, or it is present and its value is "true" all angle brackets should be converted to the ampersand xx semicolon syntax when rendering the value of the "value" attribute as the value of the component. If the "escape" attribute is present and is "false" the value of the component should be rendered as text without escaping.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="inputSecret.html">inputSecret</a></b></td><td>
-      The inputSecret tag represents an security input field (a text field where the user can enter some text). Default value sets the attribute "value". If the "styleClass" attribute is present, render its value as the value of the "class" attribute.
+<td width="15%"><b><a href="panelGrid.html">panelGrid</a></b></td><td>
+      Renders an WML table element. Required attribute is "column" what sets number of colums in the table. Render the "header" and a "footer" facet if present, as the first or last row of the table. Render the children based on the value of the "columns" attribute, creating a new row each time a "columns" worth of children have been rendered. Each child is rendered inside of a "td" element. If a child has "rendered==false" it is not rendered, and the column counter must not be incremented.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="commandLink.html">commandLink</a></b></td><td>
-      Render an WML "a" anchor element that acts like a form submit button when clicked. This element must be a childern of UIForm component. Decode Behavior Obtain the Map from the "requestParameterMap" property of the ExternalContext. If the value in theMap for the value of the "clientId" property of the component is not null, get the value of the "type" attribute, and convert it to lower case. If the result is equal to the String "reset" (without the quotes), return fromdecode(). Otherwise, create ajavax.faces.event.ActionEvent around the component, and pass it to the queueEvent() method of the component, which must be an instance ofUICommand. Encode Behavior Wml don't contain submit button tag. This element is rendered using "do" and "go" wml tags.
+<td width="15%"><b><a href="panelGroup.html">panelGroup</a></b></td><td>
+      Intended for use in situations when only one UIComponent child can be nested, such as in the case of facets.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
@@ -158,13 +158,13 @@
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="messages.html">messages</a></b></td><td>
-      Render a single message for a specific component. Set-up for Rendering Obtain the "summary" and "detail" properties fromUIMessage component. If not present, keep the empty string as the value, respectively. Obtain the firstFacesMessage to render from the component, using the "for" property of the UIMessage. This will be the only message we render. Rendering For the message renderer, we only render one row, for the first message. For the messages renderer, we render as many rows as we have messages.
+<td width="15%"><b><a href="selectMany.html">selectMany</a></b></td><td>
+      Renders a option list. Renders select tag with one option element. Render the clientId of the component as the value of the "name" attribute. Render "true" as the value of the "multiple" attribute.
     </td>
 </tr>
 <tr class="TableRowColor" bgcolor="white">
-<td width="15%"><b><a href="panelGroup.html">panelGroup</a></b></td><td>
-      Intended for use in situations when only one UIComponent child can be nested, such as in the case of facets.
+<td width="15%"><b><a href="selectOne.html">selectOne</a></b></td><td>
+      Renders a option list. Renders select tag with one option element. Render the clientId of the component as the value of the "name" attribute. Render "false" as the value of the "multiple" attribute.
     </td>
 </tr>
 </table>

 

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26