Author: cluts
Date: 2008-02-29 06:45:45 -0500 (Fri, 29 Feb 2008)
New Revision: 6443
Modified:
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
Log:
http://jira.jboss.com/jira/browse/RF-926 - corrected code for toolTip in the
"Creating the Component with a Page Tag" section.Corrected code for
suggestionBox.
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-02-29
11:41:39 UTC (rev 6442)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-02-29
11:45:45 UTC (rev 6443)
@@ -211,9 +211,9 @@
</para>
<programlisting role="XML"><![CDATA[...
<rich:suggestionbox for="test"
suggestionAction="#{bean.autocomplete}" var="cit">
- <facet name="nothingLabel">
+ <f:facet name="nothingLabel">
<h:outputText value="Empty"/>
- </facet>
+ </f:facet>
<h:column>
<h:outputText value="#{cit.text}"/>
</h:column>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-02-29 11:41:39 UTC
(rev 6442)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-02-29 11:45:45 UTC
(rev 6443)
@@ -49,9 +49,9 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
-<h:commandButton value="Button">
+<rich:panel>
<rich:toolTip value="toolTip content"/>
-</h:commandButton>
+</rich:panel>
...
]]></programlisting>
</section>