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!

popup.hide doesn't work

grodnoOct 27 2011 — edited Oct 27 2011
Hi,

i want to run a long-running procedure, showing popup while it's working.
in my managed bean i invoke code which is called from command button

private RichPopup p1
.................
public String cb1_action() {
RichPopup.PopupHints ph = new RichPopup.PopupHints();
ph.add(RichPopup.PopupHints.HintTypes.HINT_ALIGN, RichPopup.PopupHints.AlignTypes.ALIGN_AFTER_END);
p2.show(ph);
.............
Object result = operationBinding.execute();
p1.hide();
}

So , wierdly, upon button pressed , i see table populating, then popup appears, and that's it, it never closes.
what's wrong?

Regards,
AB
This post has been answered by in the line of fire on Oct 27 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 24 2011
Added on Oct 27 2011
8 comments
515 views