Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

a4j:support

843844Aug 10 2008 — edited Aug 11 2008
had been trying to use a4j , I have used it with a couple of place. on the same page. It works perfectly fine on the FF but none of the places get fired on the IE.

<h:selectOneRadio id="rdoposter_image" layout="pagedirection" height="40" style="margin:0 3em" value = "#{PosterCreator.rdoSelectValue}" >

<a4j:support event="onchange" action="#{PosterCreator.getScreenShot_ShortName()}" reRender="Poster_form" ajaxSingle="true"/>

<f:selectItem itemValue="1" itemLabel="Learn more, Live better." />

<f:selectItem itemValue="2" itemLabel="What will you do with your healty rewards?" />
<f:selectItem itemValue="3" itemLabel="Start you healty life style today." />
<f:selectItem itemValue="4" itemLabel="Healthy living made easy" />

</h:selectOneRadio>






<h:inputText size ="400" id="comments"
value="#{PosterCreator.strtextboxtext}"

style="height : 128px; width : 335px;">
<a4j:support event="onkeyup"
ajaxSingle="true"
ignoreDupResponses="true"
action="#{PosterCreator.getScreenShot_ShortName}"
reRender="data"/>
</h:inputText>



all the place where I try doing this FF is working perfect .. but no response at all from IE. Could any one tell me a solution

Regards
Bjohn

Comments

843844
bjohnnj wrote:
<a4j:support event="onchange" action="#{PosterCreator.getScreenShot_ShortName()}" reRender="Poster_form" ajaxSingle="true"/>
The action shouldn't have "()". Plus I would try using another name for the action, not starting from "get" or "set". I think JSF may get confused (just a guess).

Do you get any JavaScript errors from IE when you run this?
You can use the <a4j:log /> tag to debug ajax requests.
843844
Hey Stef,

thanks for reply... Actually this is my first a4j page which I am developing. I have tried tips u had given, But still It works fine on fire fox..but totally response less on the IE. It is just not calling server from any of the a4j tags, I am using it in 3 pages across the project.. I guess... is there some thing crucial out side this method, which has to be included on the HTML or .java file to invoke server form a4j......

thanks once again.

Regards
Bejoy
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 8 2008
Added on Aug 10 2008
2 comments
111 views