CVS: Tapestry/doc/src/ComponentReference index.html,1.32,1.33 contrib.Table.html,1.1,1.2

Malcolm Edgar <[email protected]>
Newsgroups gmane.comp.java.tapestry.cvs
Message-ID <[email protected]>
Update of /cvsroot/tapestry/Tapestry/doc/src/ComponentReference
In directory sc8-pr-cvs1:/tmp/cvs-serv15677/doc/src/ComponentReference

Modified Files:
	index.html contrib.Table.html 
Log Message:
Finishing and linking contrib.Table CR

Index: index.html
===================================================================
RCS file: /cvsroot/tapestry/Tapestry/doc/src/ComponentReference/index.html,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** index.html	9 Dec 2002 10:22:08 -0000	1.32
--- index.html	19 Dec 2002 21:01:06 -0000	1.33
***************
*** 131,135 ****
   <td width="18%"><a href="../api/net/sf/tapestry/contrib/palette/Palette.html">Pallete</a></td>
   <td width="2%">&nbsp;</td>
!  <td width="18%"><a href="../api/net/sf/tapestry/contrib/table/components/Table.html">Table</a></td>
   <td width="2%">&nbsp;</td>
   <td width="18%"><a href="../api/net/sf/tapestry/contrib/table/components/TableRows.html">TableRows</a></td>
--- 131,135 ----
   <td width="18%"><a href="../api/net/sf/tapestry/contrib/palette/Palette.html">Pallete</a></td>
   <td width="2%">&nbsp;</td>
!  <td width="18%"><a href="contrib.Table.html">Table</a></td>
   <td width="2%">&nbsp;</td>
   <td width="18%"><a href="../api/net/sf/tapestry/contrib/table/components/TableRows.html">TableRows</a></td>

Index: contrib.Table.html
===================================================================
RCS file: /cvsroot/tapestry/Tapestry/doc/src/ComponentReference/contrib.Table.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** contrib.Table.html	27 Nov 2002 10:28:11 -0000	1.1
--- contrib.Table.html	19 Dec 2002 21:01:07 -0000	1.2
***************
*** 25,31 ****
  <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr><!-- Previous component in alphabetical order. -->
!   <td align="left"><A href="???.html"><IMG alt=??? src="common-images/prev.png"></a></td>  
    <td align="middle"><A href="index.html"><IMG alt="Component Index" src="common-images/home.png" ></a></td><!-- Next component in alphabetical order. -->
!   <td align="right"><A href="???.html"><IMG alt=??? src="common-images/next.png"></a></td>  
   <tr>
   <tr>
--- 25,31 ----
  <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr><!-- Previous component in alphabetical order. -->
!   <td align="left"><A href="index.html"><IMG alt="Component Index" src="common-images/prev.png"></a></td>  
    <td align="middle"><A href="index.html"><IMG alt="Component Index" src="common-images/home.png" ></a></td><!-- Next component in alphabetical order. -->
!   <td align="right"><A href="index.html"><IMG alt="Component Index" src="common-images/next.png"></a></td>  
   <tr>
   <tr>
***************
*** 66,70 ****
    <b>Description</b>
    <br> 
!   Provides a HTML &lt;table&gt; element. ??? 
   </td>
  </tr>
--- 66,88 ----
    <b>Description</b>
    <br> 
!   Provides a HTML &lt;table&gt; element. The Table component is a facade component 
!   in the Table family. Table allows you to present a sortable and pagable table 
!   simply and easily by using only this one component.
!  <p>
!  The Table component allows you to manipulate its appearance by allowing you 
!  to define the 'class' attributes of its internal elements. If you want to change 
!  the structure of the table, however, you can instead build your own using the 
!  lower level components
!  <A HREF="../api/net/sf/tapestry/contrib/table/components/TableView.html"><CODE>TableView</CODE></A>, 
!  <A HREF="../api/net/sf/tapestry/contrib/table/components/TablePages.html"><CODE>TablePages</CODE></A>, 
!  <A HREF="../api/net/sf/tapestry/contrib/table/components/TableColumns.html"><CODE>TableColumns</CODE></A>, 
!  <A HREF="../api/net/sf/tapestry/contrib/table/components/TableRows.html"><CODE>TableRows</CODE></A>,
!  and 
!  <A HREF="../api/net/sf/tapestry/contrib/table/components/TableValues.html"><CODE>TableValues</CODE></A>.
!  <p>
!  The Table component delegates the handling of the table model and related
!  activities to the <A HREF="../api/net/sf/tapestry/contrib/table/components/TableView.html"><CODE>TableView</CODE></A>, 
!  and more detailed information about the process can be found in the 
!  documentation of that class.
   </td>
  </tr>
***************
*** 102,106 ****
      <td>yes</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 120,130 ----
      <td>yes</td>
      <td>&nbsp;</td>
!     <td>
!     The TableModel to be used to render the table. This binding is typically used only once at the beginning and then the component stores the model in the session state.
!     <p> 
!     If you want the Table to read the model every time you can use a session state manager such as NullTableSessionStateManager that will force it to get the TableModel from this binding every time. If you do this, however, you will be responsible for saving the state of the table yourself. 
!     <p> 
!     You can also call the reset() method to force the Table to abandon its old model and reload a new one. 
!     </td>
     </tr>
     <tr>
***************
*** 110,114 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 134,150 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>
!       This is the session state manager that will control what part of the table 
!       model will be saved in the session state. It is then used to recreate the 
!       table model from using what was saved in the session. By default, the 
!       <A HREF="../api/net/sf/tapestry/contrib/table/model/common/FullTableSessionStateManager.html"><tt>FullTableSessionStateManager</tt></A>
!       is used, which just saves the entire model into the session.
!       This behaviour may not be appropriate when the data is a lot or it is not
!       <A HREF="http://java.sun.com/products/jdk/1.2/docs/api/java/io/Serializable.html"><CODE>Serializable</CODE></A>.
!       <p> 
!       You can use one of the stock implementations of  
!       <A HREF="../api/net/sf/tapestry/contrib/table/model/ITableSessionStateManager.html"><CODE>ITableSessionStateManager</CODE></A>
!       to determine the session state behaviour, or you can just define your own.
!     </td>
     </tr>
     <tr>
***************
*** 118,122 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 154,163 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>
!     Determines how the session state (returned by the session state manager) 
!     will be saved in the session. If this parameter is null, then the state 
!     will be saved as a persistent property. If it is not null, then the methods 
!     of the interface will be used to save and load the state. 
!     </td>
     </tr>
     <tr>
***************
*** 126,130 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 167,177 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>
!     Determines the maximum number of pages to be displayed in the page list when 
!     the table has more than one page.
!     <p> 
!     For example, if the table has 20 pages, and 10 is the current page, 
!     pages from 7 to 13 in the page list will be shown if this parameter has a value of 7.     
!     </td>
     </tr>
     <tr>
***************
*** 134,138 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 181,185 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>The image to use to describe a column sorted in an ascending order.</td>
     </tr>
     <tr>
***************
*** 142,146 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 189,193 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>The image to use to describe a column sorted in a descending order.</td>
     </tr>
     <tr>
***************
*** 150,154 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 197,201 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>The CSS class of the pages.</td>
     </tr>
     <tr>
***************
*** 158,162 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 205,209 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>The CSS class of the table columns.</td>
     </tr>
     <tr>
***************
*** 166,170 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
     <tr>
--- 213,217 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>The CSS class of the table rows.</td>
     </tr>
     <tr>
***************
*** 174,178 ****
      <td>no</td>
      <td>&nbsp;</td>
!     <td>???</td>
     </tr>
    </table>
--- 221,225 ----
      <td>no</td>
      <td>&nbsp;</td>
!     <td>The CSS class of the table values.</td>
     </tr>
    </table>
***************
*** 190,195 ****
    <b>Examples</b>
    <p>
!   This example is under construction.</p>
!       
  
   </td></tr></table>
--- 237,243 ----
    <b>Examples</b>
    <p>
!   This example is under construction.
!   </p>
!   Please see the example in the Tapestry Workbench. 
  
   </td></tr></table>
***************
*** 199,205 ****
  </tr>
  <tr><!-- Previous component in alphabetical order. -->
!  <td align="left"><A href="???.html"><IMG alt=??? src="common-images/prev.png"></a></td>  
   <td align="middle"><A href="index.html"><IMG alt="Component Index" src="common-images/home.png" ></a></td><!-- Next component in alphabetical order. -->
!  <td align="right"><A href="???.html"><IMG alt=??? src="common-images/next.png"></a></td>  
  </tr>
  </table>
--- 247,253 ----
  </tr>
  <tr><!-- Previous component in alphabetical order. -->
!  <td align="left"><A href="index.html"><IMG alt="Component Index" src="common-images/prev.png"></a></td>  
   <td align="middle"><A href="index.html"><IMG alt="Component Index" src="common-images/home.png" ></a></td><!-- Next component in alphabetical order. -->
!  <td align="right"><A href="index.html"><IMG alt="Component Index" src="common-images/next.png"></a></td>  
  </tr>
  </table>



-------------------------------------------------------
This SF.NET email is sponsored by: Geek Gift Procrastinating?
Get the perfect geek gift now!  Before the Holidays pass you by.
T H I N K G E E K . C O M      http://www.thinkgeek.com/sf/
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.