cancel
Showing results for 
Search instead for 
Did you mean: 

Popup window not working in Firefox

Former Member
0 Kudos

Hello,

I am having a problem with displaying modal popup windows in Web Dynpro using Firefox.

This is with NW CE 7.1 and Firefox 3.0.5.

When I click the button that displays the popup window the screen goes grey and the page keeps reloading without pause.

It works in IE6 and IE8.

I've used the same code in NW 2004 and that works in both IE and firefox too.

I have tried both opening a confirm dialog and a modal window using this code, both causes the same strange request loop.


//Modal window:
IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("BekraftaFelPopupWindow");
IWDWindow bekraftaDialog = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
bekraftaDialog.show();

//Confirm dialog:
IWDWindow bekraftaDialog = wdComponentAPI.getWindowManager().createConfirmationWindow(
"Are you sure?", IPrivateStartsida.WD_EVENTHANDLER_ON_ACTION_TILL_FEL_PER_PRODUKT, "OK");
bekraftaDialog.show();

Is firefox supported in NWCE, and if so, how do I solve my problem?

Thanks in advance!

Edited by: Projekt Värdebesked on Apr 20, 2009 2:46 PM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Open an OSS message on BC-WD-UR.

Armin

Former Member
0 Kudos

I've just disabled Adblock (Firefox plugin) for my domain and it works now.

Apparently that caused the page reload loop.

Thanks for the help!

Answers (1)

Answers (1)

Former Member
0 Kudos
Former Member
0 Kudos

Thanks for the links, but they don't really cover popup windows.