Everyone must have used ADF Faces popup component , this is one of most used container to show information on top of page
In this post i am talking about popup fetch event suppose we have to perform some operation before opening popup like filtering data inside popup . We can do this by capturing popup fetch event, if you have checked af:popUp documentation then you must have seen concept of popupFetchListener
From Docs-
The
So here we will see -
How to use popupFetchListener to filter data inside popup ?
How to execute some operation before opening popup ?
How to call AMImpl method before launching popup?
In this post i am talking about popup fetch event suppose we have to perform some operation before opening popup like filtering data inside popup . We can do this by capturing popup fetch event, if you have checked af:popUp documentation then you must have seen concept of popupFetchListener
From Docs-
The
PopupFetchEvent
is one of two server-side popup events
but doesn't have a corresponding client event. The popup fetch event is
invoked during content delivery. This means that the event will only
queue for popups that have a contentDelivery
type of lazy
or lazyUncached
.
Another caveat is that the event will only work when the launch id is
set. This is automatically handled by the af:showPopupBehavior but must
be provided as a popup hint if programmatically shown.
So here we will see -
How to use popupFetchListener to filter data inside popup ?
How to execute some operation before opening popup ?
How to call AMImpl method before launching popup?