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!

fileDownloadActionListener not wokring with clientLister

vijay dasariMay 11 2025

I have a javascript

function
enforcePreventUserInput(evt) {
var popup = AdfPage.PAGE.findComponentByAbsoluteId('pt4:Busypopup');
if (popup != null) {
AdfPage.PAGE.addBusyStateListener(popup, handleBusyState);
evt.preventUserInput();
}
}
function handleBusyState(evt) {
var popup = AdfPage.PAGE.findComponentByAbsoluteId('pt4:Busypopup');
if (popup != null) {
if (evt.isBusy()) {
popup.show();
}
else if (popup.isPopupVisible()) {
popup.hide();
AdfPage.PAGE.removeBusyStateListener(popup, handleBusyState);
}
}
}

I'm calling from a button where there is filedownloadListeher configured. but It's not wokrig can anyine tell me

here why popup not coming here.

Studio Edition Version 12.2.1.4.0

This post has been answered by Timo Hahn on May 12 2025
Jump to Answer
Comments
Post Details
Added on May 11 2025
2 comments
262 views