Thanks for all the answers.

I finally got a way. In the template I used something like this:

Consult 

And then I implement

public Object[] getContext(){
                return new Object[] { ... }; // I get some fields from the 
object and put
them in an array
        }

Object getElement(Object[] obj){
        // I reconstruct the Object from the obj array
}

And then I can use it:

Object onConsult(Object[] objects) {
                Object elemento = getElement(objects);
                // Do some more stuff...


I hope this helps someone else...

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/getting-the-object-in-a-row-from-a-grid-component-tp5687588p5697886.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