RE: Submit and h:commandLink question

2005-12-19 Thread Matias Gomez Carabias
, 2005 2:32 AM To: MyFaces Discussion Subject: Re: Submit and h:commandLink question Yeah, that was it. Thank you very much!! One more question, if I put that SelectOneRadio template into an include file as f:view h:form %@ include file=myTemp.jspf

RE: Submit and h:commandLink question

2005-12-18 Thread Balaji Kalyansundaram
2. Have the bean in session scope and make sure the collection does not loose teh value. HIH Balaji -Original Message- From: Mario Ivankovits [mailto:[EMAIL PROTECTED] Sent: Saturday, 17 December 2005 6:15 AM To: MyFaces Discussion Subject: Re: Submit and h:commandLink question Hi

Re: Submit and h:commandLink question

2005-12-18 Thread Emily Gu
Hi, I don't know whether my is the similar issue. When I click the CommandLink, the value selection changes in SelectOneRadio never get changed in the backing bean. Any idea? Thanks!! On 12/18/05, Balaji Kalyansundaram [EMAIL PROTECTED] wrote: HiI had the similar (may be same) problem as the

Re: Submit and h:commandLink question

2005-12-18 Thread Emily Gu
DiscussionSubject: Re: Submit and h:commandLink question Hi, I don't know whether my is the similar issue. When I click the CommandLink, the value selection changes in SelectOneRadio never get changed in the backing bean. Any idea? Thanks!! On 12/18/05, Balaji Kalyansundaram [EMAIL PROTECTED] wrote: HiI had

Re: Submit and h:commandLink question

2005-12-18 Thread Emily Gu
DiscussionSubject: Re: Submit and h:commandLink question Hi, I don't know whether my is the similar issue. When I click the CommandLink, the value selection changes in SelectOneRadio never get changed in the backing bean. Any idea? Thanks!! On 12/18/05, Balaji Kalyansundaram [EMAIL PROTECTED] wrote: HiI had

Re: Submit and h:commandLink question

2005-12-18 Thread Simon Kitching
Emily Gu wrote: Here is my code: jsp page: f:view h:form h:selectOneRadio value= #{choice.choiceEntry} f:selectItems value=#{choiceList.choiceMap} / /h:selectOneRadio h:commandLink immediate= true value=Create action=#{choice.createEntry} /

Re: Submit and h:commandLink question

2005-12-18 Thread Emily Gu
Sorry, that was a typo. It is a setter method. Do you see anything else wrong? Thanks!! On 12/18/05, Simon Kitching [EMAIL PROTECTED] wrote: Emily Gu wrote: Here is my code: jsp page: f:viewh:form h:selectOneRadio value= #{choice.choiceEntry} f:selectItems value=#{choiceList.choiceMap} /

Re: Submit and h:commandLink question

2005-12-18 Thread Emily Gu
Yeah, that was it. Thank you very much!! One more question, if I put that SelectOneRadio template into an include file as f:view h:form %@ include file=myTemp.jspf % h:commandLink immediate= false action=#{choice.createEntry} h:outputText value= Create / /h:commandLink /h:form /f:view

RE: Submit and h:commandLink question

2005-12-16 Thread Matias Gomez Carabias
I have to add that this buttons/links are not configured with navigation because they are just used to fill up collections in the page. Thanks again -Original Message- From: Matias Gomez Carabias [mailto:[EMAIL PROTECTED] Sent: Friday, December 16, 2005 4:07 PM To: MyFaces Discussion

Re: Submit and h:commandLink question

2005-12-16 Thread Mike Kienenberger
No, having multiple command links or command buttons calling different backing bean methods inside the same form is standard practice. Maybe your backing bean is request-scoped? Maybe you've set an inconsistent renderer condition on your command link? Post the JSF commandLink page code instead

RE: Submit and h:commandLink question

2005-12-16 Thread Matias Gomez Carabias
} h:outputText value=Find Now / /h:commandLink Thanks again Matias -Original Message- From: Mike Kienenberger [mailto:[EMAIL PROTECTED] Sent: Friday, December 16, 2005 4:08 PM To: MyFaces Discussion Subject: Re: Submit and h:commandLink question No, having

Re: Submit and h:commandLink question

2005-12-16 Thread Mike Kienenberger
] Sent: Friday, December 16, 2005 4:08 PM To: MyFaces Discussion Subject: Re: Submit and h:commandLink question No, having multiple command links or command buttons calling different backing bean methods inside the same form is standard practice. Maybe your backing bean is request-scoped

RE: Submit and h:commandLink question

2005-12-16 Thread Matias Gomez Carabias
] Sent: Friday, December 16, 2005 4:08 PM To: MyFaces Discussion Subject: Re: Submit and h:commandLink question No, having multiple command links or command buttons calling different backing bean methods inside the same form is standard practice. Maybe your backing bean is request-scoped

Re: Submit and h:commandLink question

2005-12-16 Thread Mario Ivankovits
Hi! I've tried with both request and session scope for the mainWindowBeanHandler, but it's still doing nothing :( If you say you press the link and nothing happens, do you mean no http request will be sent to the server? To you see any browser action? If not, it might be a javascript

Re: Submit and h:commandLink question

2005-12-16 Thread Mario Ivankovits
Hi! I use myfaces-1.1.1 and it looks like I have a similar problem when I place a inputHtml component in my form ... currently investigating it. I dont know what was the problem, but using the lates nightly fixed it. --- Mario