Author: vkorluzhenko
Date: 2007-10-26 12:16:55 -0400 (Fri, 26 Oct 2007)
New Revision: 3572
Modified:
trunk/docs/userguide/en/src/main/docbook/included/tree.xml
Log:
http://jira.jboss.com/jira/browse/RF-1137 - fixed some errors
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2007-10-26 15:57:11 UTC
(rev 3571)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2007-10-26 16:16:55 UTC
(rev 3572)
@@ -91,7 +91,7 @@
</section>
<section>
<title>Details of Usage</title>
- <para>As it has been mentioned <link
linked="tree">above</link> the tree component allows
+ <para>As it has been mentioned <link
linkend="tree">above</link> the tree component allows
rendering any tree-like structure of data.</para>
<para>A bean property is passed into a tree <emphasis>
<property>"value"</property>
@@ -172,7 +172,7 @@
<property>"var"</property>
</emphasis> attribute. </para>
- <para> It&s possible to define several treeNode components with the
equal values of <emphasis>
+ <para> It's possible to define several treeNode components with the
equal values of <emphasis>
<property>"type"</property>
</emphasis> attribute and different values of <emphasis>
<property>"rendered"</property>
@@ -187,18 +187,17 @@
<h:form>
<rich:tree style="width:300px" value="#{library.data}"
var="item" nodeFace="#{item.type}">
<rich:treeNode type="artist"
iconLeaf="/images/tree/singer.gif" icon="/images/tree/singer.gif"
-rendered="#{item.exist}">
+ rendered="#{item.exist}">
<h:outputText value="#{item.name}" />
</rich:treeNode>
<rich:treeNode type="artist"
iconLeaf="/images/tree/singer.gif"
icon="/images/tree/singer_absent.gif"
-rendered="#{not item.exist}">
+ rendered="#{not item.exist}">
<h:outputText value="#{item.name}" />
</rich:treeNode>
...
</rich:tree>
</h:form>
-...
-]]></programlisting>
+...]]></programlisting>
<para> The example represents definition of two different treeNode components. The
first
specifies the album that's available for sale, the other specifies the
album that is
@@ -276,8 +275,7 @@
</f:facet>
...
</rich:tree>
-...
-]]></programlisting>
+...]]></programlisting>
<para> The <emphasis role="bold">
<property><rich: tree></property>