JBoss Rich Faces SVN: r11140 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-11-13 09:06:14 -0500 (Thu, 13 Nov 2008)
New Revision: 11140
Modified:
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
Log:
RF-4616: jboss wiki articles links
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-11-13 13:59:39 UTC (rev 11139)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-11-13 14:06:14 UTC (rev 11140)
@@ -676,18 +676,26 @@
<section>
<title>Relevant Resources Links</title>
- <para> Additional information on how to build <emphasis role="bold">
- <property><rich:HtmlSuggestionBox></property>
- </emphasis> dynamically you can read <ulink
- url="http://wiki.jboss.org/wiki/RichFacesCookBookCreatingSuggestionBoxDynamically"
- > here </ulink> . </para>
- <para>
- <ulink
- url="http://livedemo.exadel.com/richfaces-demo/richfaces/suggestionBox.jsf?c=s..."
- >Here</ulink> you can see the example of <emphasis
- role="bold">
- <property><rich:suggestionBox></property>
- </emphasis> usage and sources for the given example. </para>
+ <para>Vizit <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/suggestionBox.jsf?c=s...">SuggestionBox</ulink>
+ page at RichFaces Livedemo for examples of component usage and sources.
+ </para>
+ <para>RichFaces cookbook at JBoss Portal includes some articles that cover different aspects of working with
+ <emphasis role="bold"><property><rich:suggestionBox></property></emphasis>:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ "<ulink url="http://www.jboss.org/community/docs/DOC-11851">Creating suggestion box dynamically</ulink>";
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ "<ulink url="http://www.jboss.org/community/docs/DOC-11865">Getting additional properties from <rich:suggectionbox></ulink>".
+ </para>
+ </listitem>
+ </itemizedlist>
+
+
</section>
</section>
17 years, 5 months
JBoss Rich Faces SVN: r11139 - in trunk/test-applications: facelets/src/main/webapp/ListShuttle and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: tromanovich
Date: 2008-11-13 08:59:39 -0500 (Thu, 13 Nov 2008)
New Revision: 11139
Modified:
trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml
trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java
trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp
trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttleProperty.jsp
Log:
Add sourceRequired and targetRequired attributes test
Modified: trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java 2008-11-13 13:34:14 UTC (rev 11138)
+++ trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java 2008-11-13 13:59:39 UTC (rev 11139)
@@ -25,6 +25,8 @@
private boolean showAllSourceData;
private boolean showAllTargetData;
private boolean switchByClick;
+ private boolean sourceRequired;
+ private boolean targetRequired;
private ArrayList<Data> sourceValue;
private ArrayList<Data> targetValue;
private ArrayList<String> info;
@@ -70,6 +72,8 @@
this.moveControlsVisible = true;
this.orderControlsVisible = true;
this.showButtonLabels = true;
+ this.sourceRequired = false;
+ this.targetRequired = false;
this.bottomControlLabel = "bottom";
this.copyAllControlLabel = "copy all";
this.copyControlLabel = "copy";
@@ -346,7 +350,23 @@
public void setTargetCaptionLabel(String targetCaptionLabel) {
this.targetCaptionLabel = targetCaptionLabel;
}
+
+ public boolean isSourceRequired() {
+ return sourceRequired;
+ }
+ public void setSourceRequired(boolean sourceRequired) {
+ this.sourceRequired = sourceRequired;
+ }
+
+ public boolean isTargetRequired() {
+ return targetRequired;
+ }
+
+ public void setTargetRequired(boolean targetRequired) {
+ this.targetRequired = targetRequired;
+ }
+
private void addSelection(Collection<Data> selection, String description) {
if (selection == null)
return;
Modified: trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml 2008-11-13 13:34:14 UTC (rev 11138)
+++ trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml 2008-11-13 13:59:39 UTC (rev 11139)
@@ -27,6 +27,8 @@
targetListWidth="#{listShuttle.targetListWidth}"
sourceListWidth="#{listShuttle.sourceListWidth}"
listsHeight="#{listShuttle.listsHeight}"
+ sourceRequired="#{listShuttle.sourceRequired}"
+ targetRequired="#{listShuttle.targetRequired}"
sourceCaptionLabel="#{listShuttle.sourceCaptionLabel}"
targetCaptionLabel="#{listShuttle.targetCaptionLabel}"
topControlLabel="#{listShuttle.topControlLabel}"
Modified: trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml 2008-11-13 13:34:14 UTC (rev 11138)
+++ trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml 2008-11-13 13:59:39 UTC (rev 11139)
@@ -122,6 +122,14 @@
<h:outputText value="switchByClick" />
<h:selectBooleanCheckbox value="#{listShuttle.switchByClick}"
onchange="submit();" />
+
+ <h:outputText value="sourceRequired" />
+ <h:selectBooleanCheckbox value="#{listShuttle.sourceRequired}"
+ onchange="submit();" />
+
+ <h:outputText value="targetRequired" />
+ <h:selectBooleanCheckbox value="#{listShuttle.targetRequired}"
+ onchange="submit();" />
<h:outputText value="sourceCaptionLabel" />
<h:inputText value="#{listShuttle.sourceCaptionLabel}"
Modified: trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java 2008-11-13 13:34:14 UTC (rev 11138)
+++ trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java 2008-11-13 13:59:39 UTC (rev 11139)
@@ -22,6 +22,8 @@
private boolean showAllSourceData;
private boolean showAllTargetData;
private boolean switchByClick;
+ private boolean sourceRequired;
+ private boolean targetRequired;
private ArrayList<Data> sourceValue;
private ArrayList<Data> targetValue;
private ArrayList<String> info;
@@ -66,6 +68,8 @@
this.moveControlsVisible = true;
this.orderControlsVisible = true;
this.showButtonLabels = true;
+ this.sourceRequired = false;
+ this.targetRequired = false;
this.bottomControlLabel = "bottom";
this.copyAllControlLabel = "copy all";
this.copyControlLabel = "copy";
@@ -341,6 +345,22 @@
this.targetCaptionLabel = targetCaptionLabel;
}
+ public boolean isSourceRequired() {
+ return sourceRequired;
+ }
+
+ public void setSourceRequired(boolean sourceRequired) {
+ this.sourceRequired = sourceRequired;
+ }
+
+ public boolean isTargetRequired() {
+ return targetRequired;
+ }
+
+ public void setTargetRequired(boolean targetRequired) {
+ this.targetRequired = targetRequired;
+ }
+
private void addSelection(Collection<Data> selection, String description) {
if(selection == null) return;
Iterator<Data> inter = selection.iterator();
Modified: trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp 2008-11-13 13:34:14 UTC (rev 11138)
+++ trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp 2008-11-13 13:59:39 UTC (rev 11139)
@@ -27,6 +27,8 @@
targetListWidth="#{listShuttle.targetListWidth}"
sourceListWidth="#{listShuttle.sourceListWidth}"
listsHeight="#{listShuttle.listsHeight}"
+ sourceRequired="#{listShuttle.sourceRequired}"
+ targetRequired="#{listShuttle.targetRequired}"
sourceCaptionLabel="#{listShuttle.sourceCaptionLabel}"
targetCaptionLabel="#{listShuttle.targetCaptionLabel}"
topControlLabel="#{listShuttle.topControlLabel}"
Modified: trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttleProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttleProperty.jsp 2008-11-13 13:34:14 UTC (rev 11138)
+++ trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttleProperty.jsp 2008-11-13 13:59:39 UTC (rev 11139)
@@ -120,6 +120,14 @@
<h:outputText value="switchByClick" />
<h:selectBooleanCheckbox value="#{listShuttle.switchByClick}"
onchange="submit();" />
+
+ <h:outputText value="sourceRequired" />
+ <h:selectBooleanCheckbox value="#{listShuttle.sourceRequired}"
+ onchange="submit();" />
+
+ <h:outputText value="targetRequired" />
+ <h:selectBooleanCheckbox value="#{listShuttle.targetRequired}"
+ onchange="submit();" />
<h:outputText value="sourceCaptionLabel" />
<h:inputText value="#{listShuttle.sourceCaptionLabel}"
17 years, 5 months
JBoss Rich Faces SVN: r11138 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-11-13 08:34:14 -0500 (Thu, 13 Nov 2008)
New Revision: 11138
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml
Log:
https://jira.jboss.org/jira/browse/RF-4915
JSF version has been updated, docs are updated
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml 2008-11-13 13:23:36 UTC (rev 11137)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml 2008-11-13 13:34:14 UTC (rev 11138)
@@ -38,7 +38,7 @@
<section id="ApacheMyFaces">
<?dbhtml filename="ApacheMyFaces.html"?>
<title>Apache MyFaces</title>
- <para> RichFaces works with <property>Apache MyFaces</property> 1.2 version
+ <para> RichFaces works with <property>Apache MyFaces</property> 1.2.5 version
including specific libraries like TOMAHAWK Sandbox and Trinidad (the
previous ADF Faces). However, there are some considerations to take
into account for configuring applications to work with
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml 2008-11-13 13:23:36 UTC (rev 11137)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCtechreqs.xml 2008-11-13 13:34:14 UTC (rev 11138)
@@ -83,7 +83,7 @@
<itemizedlist>
<listitem><para>Sun JSF-RI - 1.2</para></listitem>
- <listitem><para>MyFaces 1.2</para></listitem>
+ <listitem><para>MyFaces 1.2.5</para></listitem>
<listitem><para>Facelets 1.1.1 - 1.2</para></listitem>
17 years, 5 months
JBoss Rich Faces SVN: r11137 - trunk/test-applications.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-11-13 08:23:36 -0500 (Thu, 13 Nov 2008)
New Revision: 11137
Modified:
trunk/test-applications/pom.xml
Log:
-auto-jsp module
Modified: trunk/test-applications/pom.xml
===================================================================
--- trunk/test-applications/pom.xml 2008-11-13 12:50:49 UTC (rev 11136)
+++ trunk/test-applications/pom.xml 2008-11-13 13:23:36 UTC (rev 11137)
@@ -59,8 +59,7 @@
<modules>
<module>jsp</module>
- <module>facelets</module>
- <module>auto-jsp</module>
+ <module>facelets</module>
<module>automator</module>
</modules>
17 years, 5 months
JBoss Rich Faces SVN: r11136 - trunk/sandbox/ui/editor/src/main/antlr.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-11-13 07:50:49 -0500 (Thu, 13 Nov 2008)
New Revision: 11136
Modified:
trunk/sandbox/ui/editor/src/main/antlr/html-seamtext.g
Log:
Modified: trunk/sandbox/ui/editor/src/main/antlr/html-seamtext.g
===================================================================
--- trunk/sandbox/ui/editor/src/main/antlr/html-seamtext.g 2008-11-13 12:46:17 UTC (rev 11135)
+++ trunk/sandbox/ui/editor/src/main/antlr/html-seamtext.g 2008-11-13 12:50:49 UTC (rev 11136)
@@ -1,6 +1,6 @@
header
{
- package org.richfaces;
+ package org.richfaces.antlr;
}
{
17 years, 5 months
JBoss Rich Faces SVN: r11135 - trunk/test-applications/jsp/src/main/webapp/WEB-INF.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-11-13 07:46:17 -0500 (Thu, 13 Nov 2008)
New Revision: 11135
Modified:
trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml
Log:
filter mapping for extension filter
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml 2008-11-13 12:45:44 UTC (rev 11134)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml 2008-11-13 12:46:17 UTC (rev 11135)
@@ -253,18 +253,24 @@
</filter>
<filter-mapping>
- <filter-name>ajax4jsf</filter-name>
+ <filter-name>extensionsFilter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
- <dispatcher>FORWARD</dispatcher>
- <dispatcher>REQUEST</dispatcher>
- <dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>extensionsFilter</filter-name>
- <servlet-name>Faces Servlet</servlet-name>
+ <url-pattern>*</url-pattern>
</filter-mapping>
+
+ <filter-mapping>
+ <filter-name>ajax4jsf</filter-name>
+ <servlet-name>Faces Servlet</servlet-name>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>REQUEST</dispatcher>
+ <dispatcher>INCLUDE</dispatcher>
+ </filter-mapping>
+
<session-config>
<session-timeout>600</session-timeout>
</session-config>
@@ -282,13 +288,13 @@
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
-
+
<!-- Faces Servlet Mapping -->
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
-
+
<login-config>
<auth-method>BASIC</auth-method>
</login-config>
17 years, 5 months
JBoss Rich Faces SVN: r11134 - in trunk/test-applications/seleniumTest/richfaces/src: test/java/org/richfaces/testng and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-11-13 07:45:44 -0500 (Thu, 13 Nov 2008)
New Revision: 11134
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/orderingList/orderingListTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/OrderingListTest.java
Log:
RF-4895
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/orderingList/orderingListTest.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/OrderingListTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/OrderingListTest.java 2008-11-13 12:44:17 UTC (rev 11133)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/OrderingListTest.java 2008-11-13 12:45:44 UTC (rev 11134)
@@ -77,6 +77,53 @@
private String immediateId;
/**
+ * keyboard navigation works for component
+ */
+ @Test
+ public void testKeyboardNavigation(Template template) {
+ renderPage(template, initMethod);
+ initFields();
+ _checkOrdering(new String[]{"0", "1", "2", "3"});
+ _selectItem(orderingListId + ":0", false, false);
+ _selectItem(orderingListId + ":2", true, false);
+ selenium.click(downButton);
+ _checkOrdering(new String[]{"1", "0", "3", "2"});
+ _selectItem(orderingListId + ":1", false, false);
+ _selectItem(orderingListId + ":3", false, true);
+ selenium.click(downButton);
+ _checkOrdering(new String[]{"2", "1", "0", "3"});
+ _selectItem(orderingListId + ":0", false, false);
+ selenium.controlKeyDown();
+ selenium.keyDown(orderingListId + "focusKeeper", "A");
+ selenium.controlKeyUp();
+ clickAjaxCommandAndWait(submitId);
+ Assert.assertTrue(selenium.getText(selectionText).split(",").length == 4);
+ _selectItem(orderingListId + ":1", false, false);
+ selenium.keyDown(orderingListId + "focusKeeper", "\\40");
+ selenium.click(upButton);
+ _checkOrdering(new String[]{"2", "0", "1", "3"});
+ _selectItem(orderingListId + ":3", false, false);
+ selenium.keyDown(orderingListId + "focusKeeper", "\\38");
+ selenium.click(downButton);
+ _checkOrdering(new String[]{"2", "0", "3", "1"});
+ _selectItem(orderingListId + ":1", false, false);
+ selenium.keyDown(orderingListId + "focusKeeper", "\\33");
+ _checkOrdering(new String[]{"1", "2", "0", "3"});
+ selenium.keyDown(orderingListId + "focusKeeper", "\\34");
+ _checkOrdering(new String[]{"2", "0", "3", "1"});
+ _selectItem(orderingListId + ":1", false, false);
+ selenium.controlKeyDown();
+ selenium.keyDown(orderingListId + "focusKeeper", "\\38");
+ selenium.controlKeyUp();
+ _checkOrdering(new String[]{"2", "0", "1", "3"});
+ _selectItem(orderingListId + ":1", false, false);
+ selenium.controlKeyDown();
+ selenium.keyDown(orderingListId + "focusKeeper", "\\40");
+ selenium.controlKeyUp();
+ _checkOrdering(new String[]{"2", "0", "3", "1"});
+ }
+
+ /**
* immediate = true component works respectively
*/
@Test
@@ -349,12 +396,34 @@
private void _checkOrdering(String[] ordering) {
for (int i = 0; i < ordering.length; i++) {
Assert.assertEquals(selenium.
- getAttribute("xpath=id('" + orderingListId +"tbody')/tr[" + (i + 1) + "]@id"),
- orderingListId + ":" + ordering[i]);
+ getText("xpath=id('" + orderingListId +"tbody')/tr[" + (i + 1) + "]/td[1]"),
+ "item" + ordering[i]);
}
}
+ private void _selectItem(String itemId, boolean ctrl, boolean shift) {
+ writeStatus("Select item id: " + itemId);
+ try {
+ if (ctrl) {
+ selenium.controlKeyDown();
+ }
+ if (shift) {
+ selenium.shiftKeyDown();
+ }
+ selenium.click(itemId);
+ if (ctrl) {
+ selenium.controlKeyUp();
+ }
+ if (shift) {
+ selenium.shiftKeyUp();
+ }
+ } catch (Exception e) {
+ writeStatus("Selection item id: " + itemId + " failed.");
+ Assert.fail("No item was found. Item id: " + itemId + e);
+ }
+ }
+
private void initFields() {
String formId = getParentId() + "_form:";
String attrFormId = getParentId() + "attrFormId";
17 years, 5 months
JBoss Rich Faces SVN: r11133 - trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-11-13 07:44:17 -0500 (Thu, 13 Nov 2008)
New Revision: 11133
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java
Log:
small fix
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java 2008-11-13 11:09:19 UTC (rev 11132)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java 2008-11-13 12:44:17 UTC (rev 11133)
@@ -182,7 +182,7 @@
* keyboard navigation works for component
*/
@Test
- public void testHTMLKeyboardNavigation(Template template) {
+ public void testKeyboardNavigation(Template template) {
init(template);
_selectItem(parentId + "ls:0", true, false);
_selectItem(parentId + "ls:1", true, false);
17 years, 5 months
JBoss Rich Faces SVN: r11132 - trunk/docs/cdkguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-11-13 06:09:19 -0500 (Thu, 13 Nov 2008)
New Revision: 11132
Modified:
trunk/docs/cdkguide/en/src/main/docbook/modules/intro.xml
Log:
RF-4616: jboss wiki articles links
Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/intro.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/intro.xml 2008-11-13 11:03:06 UTC (rev 11131)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/intro.xml 2008-11-13 11:09:19 UTC (rev 11132)
@@ -58,7 +58,9 @@
A new component development starts from a pre-generated component project template.
It contains the whole required infrastructure and necessary files generated.
It's necessary only to have a <ulink url="http://maven.apache.org">Maven</ulink> installed.
- All other required stuff will be loaded and configured automatically.
+ All other required stuff will be loaded and configured automatically. For more information about how to
+ work with Maven on JBoss projects explore corresponding <ulink url="http://www.jboss.org/community/docs/DOC-11358">articles</ulink>
+ at JBoss portal.
</para>
</listitem>
<listitem>
17 years, 5 months
JBoss Rich Faces SVN: r11131 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: pgolawski
Date: 2008-11-13 06:03:06 -0500 (Thu, 13 Nov 2008)
New Revision: 11131
Modified:
trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml
Log:
added additional info about external filtering and "filter" facet
Modified: trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml 2008-11-13 09:51:33 UTC (rev 11130)
+++ trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml 2008-11-13 11:03:06 UTC (rev 11131)
@@ -140,7 +140,16 @@
</mediaobject>
</figure>
<para>Information about sorting and filtering can be found <link linkend="sort"
- >here</link>.</para>
+ >here</link>.
+ </para>
+ <para>
+ For external filtering
+ <emphasis role="bold"><property><&extDataTable;></property></emphasis>
+ component supports <emphasis><property>"filter"</property></emphasis> facet
+ for <emphasis role="bold"><property><rich:column></property></emphasis> component.
+ In this facet you can define your own controls for filtering which will be positioned like built-in filter controls.
+ Rest of the filter scenario is the same as described <link linkend="filter">here</link>.
+ </para>
<para> In the example <emphasis>
<property>"selection"</property>
17 years, 5 months