Re: how to pass value in html:text from action

2005-11-29 Thread Stanislav
> >> > >> >>value="<%=value.toString()%>" /> > > > >Tnx, it works :-) > > > >>Alternatively, use an action to populate the form bean. > >> > >OK. I try to do this: > > > >ZahtjevZaKreditForm zahtjevZaKreditForm = (ZahtjevZaKreditForm) form; > >zahtjevZaKreditForm.setPrezimeK(prezimeK); > > > >

Re: how to pass value in html:text from action

2005-11-29 Thread Borislav Sabev
Stanislav wrote: Tnx, it works :-) Alternatively, use an action to populate the form bean. OK. I try to do this: ZahtjevZaKreditForm zahtjevZaKreditForm = (ZahtjevZaKreditForm) form; zahtjevZaKreditForm.setPrezimeK(prezimeK); and leave the jsp unchanged like: Try to

Re: how to pass value in html:text from action

2005-11-29 Thread Stanislav
> > value="<%=value.toString()%>" /> Tnx, it works :-) > Alternatively, use an action to populate the form bean. OK. I try to do this: ZahtjevZaKreditForm zahtjevZaKreditForm = (ZahtjevZaKreditForm) form; zahtjevZaKreditForm.setPrezimeK(prezimeK); and leave the jsp unchanged like: But th

Re: how to pass value in html:text from action

2005-11-29 Thread Bob Arnott
Stanislav wrote: [snipped...] You can't embed tags within tags... Try something like: Alternatively, use an action to populate the form bean. Cheers, -- Bob Arnott - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

how to pass value in html:text from action

2005-11-29 Thread Stanislav
I have action in which i get data from db and put this data in request or session. After that i was beeing sent to jsp page that display data from request or sesion, but this jsp also need to provide changing db data and storing them back into db. i was thinking to do that passing right into html