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!

unable to edit a inputtext after tab or enter

3558023Aug 3 2018 — edited Aug 6 2018

Hi all,

I am sorry to bother you guys again; But I encountered an error which need your help:

first of all, I using jdeveloper 11g r2 11.1.2.1

The issue i encountered is that, when modified a value in an inputtext, I unable to edit the whole row.

when I changed the value, and press either tab and enter, suppose it will move to next inputtext and I be able to keep input(in fact, in previous version of the program, it work in this way and properly)

But the truth is, when I updated the value, the color of the row is changed and i no longer can edit the next field, even do you can see the cursor already moved to next field; it look like the row is locked as edit able to false.

below is the code of the inputtext.

<af:inputText value="#{row.bindings.IntRate09.inputValue}"

                                                                      label="#{bindings.FD_DetailsTrVO11.hints.IntRate09.label}"

                                                                      required="#{bindings.FD_DetailsTrVO11.hints.IntRate09.mandatory}"

                                                                      columns="#{bindings.FD_DetailsTrVO11.hints.IntRate09.displayWidth}"

                                                                      maximumLength="#{bindings.FD_DetailsTrVO11.hints.IntRate09.precision}"

                                                                      shortDesc="#{bindings.FD_DetailsTrVO11.hints.IntRate09.tooltip}"

                                                                      disabled="#{loginInfo.currentPageRight =='V'}"

                                                                      id="it43" clientComponent="true"

                                                                      autoSubmit="true"

                                                                      valueChangeListener="#{backingBeanScope.backing_fixedDeposit_SetupTenor.rateValueChange}">

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

                                                            <af:convertNumber type="number" minFractionDigits="7"

                                                                              maxIntegerDigits="4"

                                                                              maxFractionDigits="7"/>

                                                            <!-- <f:converter converterId="TRSRateConverterNull"/>-->

                                                            <af:clientListener method="onEnterPress" type="keyDown"/>

                                                        </af:inputText>

I did updated the program and made a new version; But I never modify the code in this page or this java file, I also tried to copy the source of this page from previous version, but the issue still happen. I have no idea how and why it happened so sudden.(in fact, i had compare the jspx and java file with previous version via Jdeveloper, and the result is they are identical)

May I ask, can anyone give me some idea may case this issue please?

Moreover, as I tried to copy the source of this page from previous version and it still not work as expected; I think that may due to the page link to some other common object which modified in this update.

But I tried to trace and also restored related objects, but the issue still happen, may I ask, can anyone give me some clue or way I should take a look please?

Thank you very much.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 3 2018
Added on Aug 3 2018
7 comments
348 views