Re: T5 : select component in a form didn't show the selected value [EDIT MODE]

2007-12-21 Thread dwi ardi irawan
and also overide the equals method : public boolean equals(Object object) { if (!(object instanceof Club)) { return false; } Club obj = (Club) object; return new EqualsBuilder() .append(this.idClub, obj.idClub) .append(thi

Re: T5 : select component in a form didn't show the selected value [EDIT MODE]

2007-12-21 Thread dwi ardi irawan
hi it works i just changed like this :   cos in the player object contains club object (i'm using iBatis+Spring for ORM) so what i should do it's to call Player.club not Player.idClub or Player.clubName(Club Properties). Thnx guys On Dec 21, 2007 9:52 PM, dwi ardi ir

Re: T5 : select component in a form didn't show the selected value [EDIT MODE]

2007-12-21 Thread dwi ardi irawan
ir works with the that one, but i'm still curious bout how implemented it inside aq form... Hmmm I already override the equals method but still didn't work On Dec 21, 2007 4:30 AM, Sylwek <[EMAIL PROTECTED]> wrote: > > Hi, > will it be possible to use in this case BeanEditForm with compon

Re: T5 : select component in a form didn't show the selected value [EDIT MODE]

2007-12-20 Thread Sylwek
Hi, will it be possible to use in this case BeanEditForm with component Select ? Something like this: Sylwek -- View this message in context: http://www.nabble.com/T5-%3A-select-component-in-a-form-didn%27t-show-the-selected-value--EDIT-MODE--tp14414479p14445453.html

Re: T5 : select component in a form didn't show the selected value [EDIT MODE]

2007-12-19 Thread Marcelo Lotif
Hi, Try to override the equals() method from the Object on your Club class 2007/12/19, Penyihir Kecil <[EMAIL PROTECTED]>: > > Hi... > > i got another problem here, using select component inside a form. > well, when it's on "add" modeit works to add new entry in the > database. > > but when i

T5 : select component in a form didn't show the selected value [EDIT MODE]

2007-12-19 Thread Penyihir Kecil
Hi... i got another problem here, using select component inside a form. well, when it's on "add" modeit works to add new entry in the database. but when i try to edit it ("edit" mode). the select component didn't showed the selected value but back to normal condition (ordered list value). c