Re: Master-Detail example Using Tapestry-hibernate

2008-11-16 Thread Ronny L
> user variable type into Integer, the data will be inserted to the > database. > > Can anyone help ? > > Cheers, > > Abangkis > > ----- > To unsubscribe, e-mail: [EM

Re: Master-Detail example Using Tapestry-hibernate

2008-11-15 Thread abangkis
Thanks a lot for your help. Yes, I only put that as a last resort. Because any other way that i tried didn't work. Cheers, Abangkis On Sat, Nov 15, 2008 at 7:50 PM, Thiago H. de Paula Figueiredo <[EMAIL PROTECTED]> wrote: > Em Sat, 15 Nov 2008 07:47:53 -0300, abangkis <[EMAIL PROTECTED]> escrev

Re: Master-Detail example Using Tapestry-hibernate

2008-11-15 Thread Thiago H. de Paula Figueiredo
Em Sat, 15 Nov 2008 07:47:53 -0300, abangkis <[EMAIL PROTECTED]> escreveu: @Entity public class TaskItem { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @NonVisual private Long id; private User user; public Long getId() { return id; }

Master-Detail example Using Tapestry-hibernate

2008-11-15 Thread abangkis
Hi guys, is there any example of creating a Master-Detail table using Tapestry-hibernate. I've tried create two entity clas : @Entity public class TaskItem { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @NonVisual private Long id; private User user;