Re: Select One Row

2004-08-27 Thread struts Dude
Can't u do it using checkbox? Thanks - Original Message - From: "Varley, Roger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 26, 2004 10:44 PM Subject: Select One Row Hi I'm starting my first Struts project and I have got a .jsp page that displays a list of bean

RE: Select One Row

2004-08-26 Thread Ruben Cepeda
Hi Varley, Do you have the properties that make up your compose key in the collection, becuase if you do you can try something like the following: . * Ruben Cepeda [EMAIL PROTECTED] * Origin

Re: Select One Row

2004-08-26 Thread Ovidiu EFTIMIE
When you make the select to retrive the data get your triple key in one column like this select key1 || '#' || key2 || '#' || key3 key from mytable In your Action form you'll have private String key ; //setter + getter In your TO private String key1; private String key2; private String key3; /