Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tapestry Wiki" for 
change notification.

The "Tapestry5GridComponent" page has been changed by BasileChandesris.
http://wiki.apache.org/tapestry/Tapestry5GridComponent?action=diff&rev1=10&rev2=11

--------------------------------------------------

  If you want to hide a column from the Grid:
  
  
-  * Tapestry 5.1 :
+  * Tapestry 5.1:
  
  {{{
  <t:grid t:source="list" exclude="id"/>
  }}}
  
  
-  * Tapestry :
+  * Tapestry:
  {{{
  <t:grid t:source="list" remove="id"/>
  }}}
  
  == How link an entry to another page ==
- The persons's lastname shall be linked to a page "person/$ID"
+ The person's lastname shall be linked to a page "person/$ID"
  {{{
  <t:grid t:source="list" row="person">
    <t:parameter name="lastnameCell">
@@ -37, +37 @@

  {{{
  <t:grid t:source="list" row="person">
    <t:parameter name="detailsCell">  <!-- just invent a cell name -->
-     <t:pagelink t:page="person" 
t:context="person.id">${person.lastname}</t:pagelink>
+     <t:pagelink t:page="person" 
t:context="[person.id,person.lastname]">${person.lastname}</t:pagelink>
    </t:parameter>
  </t:grid>
  }}}

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to