Author: vkorluzhenko
Date: 2007-06-27 11:24:39 -0400 (Wed, 27 Jun 2007)
New Revision: 1343
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
Log:
added new questions
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2007-06-27 14:52:01 UTC
(rev 1342)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2007-06-27 15:24:39 UTC
(rev 1343)
@@ -88,6 +88,9 @@
<para><ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&...
Here</ulink> is an article that explains the Skinnability
basics.</para>
+ <para> For information you can also see
discussion about this problem on the <ulink
+
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&...
+ >RichFaces Users Forum</ulink></para>
<para>Also, the effect of predefined skins on the application whole
look-and-feel
could be seen <ulink
url="http://livedemo.exadel.com/richfaces-demo/"
here</ulink>.</para>
@@ -95,8 +98,8 @@
<section>
<?dbhtml
filename="WhyRichFaceslibrarycondataTablecomp"?>
- <title>Why RichFaces library contains
<rich:dataTable> component, though there is
- the standard <h:dataTable></title>
+ <title>Why RichFaces library contains
<rich:dataTable> component,
+ though there is the standard
<h:dataTable></title>
<para>The answer could be found <ulink
url="http://labs.jboss.com/wiki/RichFacesArticleDataTable"
here</ulink>.</para>
@@ -226,8 +229,8 @@
<section>
<?dbhtml
filename="Isitpossibletocustomizelookofdatascroller"?>
- <title>Is it possible to customize the look of dataScroller (the
forward/back buttons)
- and replace them with an images?</title>
+ <title>Is it possible to customize the look of dataScroller (the
forward/back
+ buttons) and replace them with an images?</title>
<para>The answer is yes. Use facets:
"first_disabled",
"last_disabled",
"next_disabled",
"previous_disabled",
@@ -245,8 +248,8 @@
<section>
<?dbhtml filename="Howtoredirecttoanotherpage"?>
<title><rich:dropDown> component: How to redirect to
another page?</title>
- <para>If you want to navigate outside, when application uses an
external URL, you should use the
- following approach:</para>
+ <para>If you want to navigate outside, when application uses an
external URL, you
+ should use the following approach:</para>
<programlisting role="XML"><![CDATA[...
<rich:dropDownMenu>
…
@@ -271,10 +274,10 @@
<?dbhtml
filename="CanthedropDownMenubeincludedintreenodes"?>
<title>Can dropDownMenu be included in tree nodes?</title>
<para>The <emphasis
role="bold"><rich:dropDownMenu></emphasis> is
- designed keeping in mind that it should not be used for a
contextMenu purpose.
- We have a <emphasis
role="bold"><rich:contextMenu></emphasis>
- component in the TODO list. However, it is not schedule for the
nearest
- versions.</para>
+ designed keeping in mind that it should not be used for a
contextMenu
+ purpose. We have a <emphasis role="bold"
+ ><rich:contextMenu></emphasis> component
in the TODO list.
+ However, it is not schedule for the nearest
versions.</para>
</section>
<section>
@@ -333,7 +336,8 @@
<para>To implement this feature use the "action"
attribute of
<emphasis
role="bold"><rich:tab></emphasis> and
"selectedTab" of the <emphasis
role="bold"
- ><rich:tabPanel></emphasis>.
Simple code is placed below:</para>
+ ><rich:tabPanel></emphasis>.
Simple code is placed
+ below:</para>
<programlisting role="XML"><![CDATA[...
<rich:tab label="MyName" id="MyName"
action="#{MySessionBean.activateSecuritySettingsTab}" >
...
@@ -348,8 +352,8 @@
<section>
<?dbhtml filename="Howtoretrievethecurrentvalue"?>
<title>How to retrieve the current value from the
inputNumberSlider?</title>
- <para>To catch the value of the inputNumberSlider from the
JavaScrip, use
- the following approach:</para>
+ <para>To catch the value of the inputNumberSlider from the
JavaScrip, use the
+ following approach:</para>
<programlisting role="XML"><![CDATA[...
<rich:inputNumberSlider width="500" step="20"
onchange="someFunctionCall(this.input.value)"
@@ -376,5 +380,28 @@
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&...
here</ulink>.</para>
</section>
+
+ <section>
+ <?dbhtml filename="Howtoretrievethecurrentvalue"?>
+ <title>Is there a way to capture the rowdata of a dataTable and
rich:subTable?</title>
+ <para> For information you can see discussion about this problem on
the <ulink
+
url="http://jboss.com/index.html?module=bb&op=viewtopic&...
+ >RichFaces Users Forum</ulink></para>
+ </section>
+
+ <section>
+ <?dbhtml filename="Howtoretrievethecurrentvalue"?>
+ <title>Is it possible to use the datascroller without it's
table border and styles (to show only the links)?</title>
+ <para> It' necessary to redefine rich* classes for example
like this:</para>
+ <programlisting
role="JAVA"><![CDATA[.rich-datascr-button {
+border: 0px;
+}
+.rich-dtascroller-table {
+border: 0px;
+}
+.rich-datascr-button {
+background-color: transparent;
+}]]></programlisting>
+ </section>
</chapter>