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!

event type 'blur' is not working in af:inputText

Madhav RaoAug 28 2015 — edited Aug 31 2015

Hi Everyone,

jdeveloper version : 11.1.1.7

Can anyone help one this.

event type 'blur' is not working in af:inputText

code sample:

<af:clientListener type="blur" method="handelEnterButton"/>

                    <af:serverListener type="serverListenerOperations"

                                       method="#{viewScope.bean.serverListenerForCostPerson}"/>

script:

function handelEnterButton(event)
{
    var code=event.getKeyCode();  
    var source = event.getSource();
    alert("test");
    AdfCustomEvent.queue(source,"serverListenerOperations", {}, false);
}

Problem: when i tab out from the inputext component,  ' handelEnter Buttion'(javascript method) not called by the clientListner.

I used 'https://blogs.oracle.com/jdevotnharvest/entry/how_to_notify_the_server'  as reference.

Regards,

Madhav.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 28 2015
Added on Aug 28 2015
4 comments
497 views