Skip to Main Content

Java Development Tools

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.

Image field cannot refresh when navigate records in jsf page

BAO.SZSep 12 2014 — edited Sep 14 2014

In jdev 12.1.2,

I have a formlayout in a jsf page, there is a af:image which bind to a url of picture file, the source code is like this:

("#{bindings.Headpicurl.inputValue}" )

                <f:facet name="tab3">

                    <af:panelFormLayout id="pfl1">

                        <af:inputText value="#{bindings.Id.inputValue}" label="#{bindings.Id.hints.label}"

                                      required="#{bindings.Id.hints.mandatory}" readOnly="true"

                                      columns="#{bindings.Id.hints.displayWidth}"

                                      maximumLength="#{bindings.Id.hints.precision}"

                                      shortDesc="#{bindings.Id.hints.tooltip}" id="it1">

                            <f:validator binding="#{bindings.Id.validator}"/>

                        </af:inputText>

                        <af:image shortDesc="#{bindings.Headpicurl.hints.tooltip}" id="it4"

                                  source="#{bindings.Headpicurl.inputValue}"/>

                        <f:facet name="footer">

                            <af:panelGroupLayout layout="horizontal" id="pgl1">

                                <af:button actionListener="#{bindings.First.execute}" text="First"

                                           disabled="#{!bindings.First.enabled}" partialSubmit="true" id="b1"/>

                                <af:button actionListener="#{bindings.Previous.execute}" text="Previous"

                                           disabled="#{!bindings.Previous.enabled}" partialSubmit="true" id="b2"/>

                                <af:button actionListener="#{bindings.Next.execute}" text="Next"

                                           disabled="#{!bindings.Next.enabled}" partialSubmit="true" id="b3"/>

                                <af:button actionListener="#{bindings.Last.execute}" text="Last"

                                           disabled="#{!bindings.Last.enabled}" partialSubmit="true" id="b4"/>

                            </af:panelGroupLayout>

                        </f:facet>

                    </af:panelFormLayout>

                </f:facet>

But, when I navigate records in the page, other fields will refresh correctly, except the image field--the image field displaying will not refresh.

Can anyone give some help?

Thanks.

This post has been answered by kdario on Sep 14 2014
Jump to Answer

Comments

orafad
Well, don't post 695479 threads (Application Server is a different product suite from "Applications" aka EBS).

OU is here (there are different Learning paths...):
http://education.oracle.com/

E-Business Suite forums are here:
http://forums.oracle.com/forums/category.jspa?categoryID=3
649391
try to search another option...
591186
Start Here:

2681302
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 12 2014
Added on Sep 12 2014
11 comments
260 views