Author: smukhina
Date: 2009-02-16 14:26:43 -0500 (Mon, 16 Feb 2009)
New Revision: 12674
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/editDataTable.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/extended-data-model.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/usage.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-5761
dataTable live demo section is corrected
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/editDataTable.xhtml
===================================================================
---
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/editDataTable.xhtml 2009-02-16
18:15:41 UTC (rev 12673)
+++
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/editDataTable.xhtml 2009-02-16
19:26:43 UTC (rev 12674)
@@ -12,7 +12,7 @@
<p>
In this example you could see two basic and frequently asked use-cases
- implemented. It's a editing and deletion of the table cells via modal panel
component.
+ implemented. These are editing and deleting of the table cells via modal panel
component.
</p>
<fieldset class="demo_fieldset">
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/extended-data-model.xhtml
===================================================================
---
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/extended-data-model.xhtml 2009-02-16
18:15:41 UTC (rev 12673)
+++
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/extended-data-model.xhtml 2009-02-16
19:26:43 UTC (rev 12674)
@@ -8,28 +8,28 @@
<ui:composition template="/templates/component-sample.xhtml">
<ui:define name="sample">
<p>
-Perhaps the most obvious problem of DataTable and javax.faces.model.DataModel is lack of
support for more complicated scenarios that uses
+Perhaps the most obvious problem of DataTable and javax.faces.model.DataModel is lack of
support for more complicated scenarios that use
data from the database.
-To solve that problem <b>Richfaces</b> has two major tools:
+To solve this problem <b>Richfaces</b> has two major tools:
<ul>
<li>
- set of data-driven components that render data sets in many different ways
(<b>rich:dataTable</b> , <b>rich:dataGrid</b>,
<b>rich:dataList</b>, <b>a4j:repeat</b> etc.).
- All this components derived it common functionality from the common core that, in
addition to standard javax.faces.model.DataModel,
+ A set of data-driven components that render data sets in various ways
(<b>rich:dataTable</b> , <b>rich:dataGrid</b>,
<b>rich:dataList</b>, <b>a4j:repeat</b> etc.).
+ All these components derive their common functionality from the common core that in
addition to standard javax.faces.model.DataModel,
can understand and use
</li>
<li>
- extended data model classes <b>org.ajax4jsf.model.ExtendedDataModel</b> and
<b>org.ajax4jsf.model.SerializableDataModel</b>. This two classes works
- together to provide functions that missing in standard DataModel.
+ extended data model classes <b>org.ajax4jsf.model.ExtendedDataModel</b> and
<b>org.ajax4jsf.model.SerializableDataModel</b>. These two classes work
+ together to provide functions that missing in the standard DataModel.
</li>
</ul>
The most important additional functions are:
<ul>
<li>access for rows by primary keys instead of index position</li>
<li>implementation of "visitor" pattern over the "range" of
rows to support "table scroller" or "paginator" functions</li>
- <li>ability to serialize table data so it may be used on a post-back processing
without additional database query</li>
+ <li>ability to serialize table data, so it can be used on post-back processing
without additional database query</li>
</ul>
-To use this extensions you need to implement your own DataModel that extends one of our
ExtendedDataModel classes and implement few of
-important functions. Below is the example of such implementation.
+To use these extensions you need to implement your own DataModel that extends one of our
ExtendedDataModel classes and implement some of
+important functions. Below there is an example of such implementation.
</p>
<div class="sample-container" >
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/usage.xhtml
===================================================================
---
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/usage.xhtml 2009-02-16
18:15:41 UTC (rev 12673)
+++
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/usage.xhtml 2009-02-16
19:26:43 UTC (rev 12674)
@@ -10,7 +10,7 @@
- <p>DataTable allows to show a tabular data. Additional to the standard
<h:dataTable>, this component
+ <p>DataTable allows to show tabular data. In addition to the standard
<h:dataTable>, this component
enables row and column spans for columns, a flexible layout for a header and a footer.
DataTable supports "master-detail" pattern and allows to show the
combination
of a master table and detail sub-tables.<br />