Well, I'm sure you're a smart guy and can figure out how to get the tbody.
The mixin will fire after the grid component has rendered. The grid renders
a table inside a div so you will need to do something like:

List<Node> topChildren =  writer.getElement().getChildren(); 
Element div = (Element) topChildren.get(topChildren.size() - 1); 
Element tbody = div.find("table/tbody"); 



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Render-whole-table-grid-row-as-a-link-tp5717388p5717909.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to