Om de ûnderfining foar jo te ferbetterjen is tydlik de funksjonaliteit dan dizze website troch ûnderhâldswurk beheind. Wannear in artikel jo probleem net oplost en jo in fraach stelle wolle, kin ús stipemienskip jo helpe yn @FirefoxSupport op Twitter en /r/firefox op Reddit.

Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Mear ynfo

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

The behavior for blocking plugin pop-up

  • 4 antwurd
  • 4 hawwe dit probleem
  • 2 werjeftes
  • Lêste antwurd fan Lexer52

more options

Good day. I receive pop-up 'Java Deployment Toolkit (click-to-play) ' in the top of the web-page when I login to my site http://clip2net.com/clip/m0/1379329015-clip-33kb.png When I click to any application from menu (see screen, application like 'Admin', 'Alarms' and so on), I have my menu bar redrawn out of place: http://clip2net.com/clip/m0/1379329358-clip-41kb.png If I activate this plugin, this pop-up will disappear and menu bar will be at the top of the page.

The question is about redrawing of my menu bar: canyou please provide some comments about this situation? How not to get my menu bar redrawn because of this pop-up?

upd: The investigation has provided the following information: Firefox adds div section with this message to the top of the page... But it is interesting that only menu bar is redrawn...

Good day. I receive pop-up 'Java Deployment Toolkit (click-to-play) ' in the top of the web-page when I login to my site http://clip2net.com/clip/m0/1379329015-clip-33kb.png When I click to any application from menu (see screen, application like 'Admin', 'Alarms' and so on), I have my menu bar redrawn out of place: http://clip2net.com/clip/m0/1379329358-clip-41kb.png If I activate this plugin, this pop-up will disappear and menu bar will be at the top of the page. The question is about redrawing of my menu bar: canyou please provide some comments about this situation? How not to get my menu bar redrawn because of this pop-up? upd: The investigation has provided the following information: Firefox adds div section with this message to the top of the page... But it is interesting that only menu bar is redrawn...

Bewurke troch Lexer52 op

Keazen oplossing

ComputerWhiz, yes, it was CSS issue. This site uses ExtJs library and menu bar is 'panel' in ExtJs. Default CSS for ExtJs panels has 'position: relative'. When this pop-up appears, FF put it at the first div tag and that is why menu bar is redrawn. I have tried 1) to override 'position' from 'relative' to 'absolute' 2) to add into css 'z-index=9999' (with 'opacity= .99' to get z-index applied) but it has been all in vain.

So the fix was changing 'position' from 'relative' to 'fixed' with adding the following fields: 'top: 1px; right: 1px' (left top corner).

Dit antwurd yn kontekst lêze 👍 0

Alle antwurden (4)

more options

This is not a problem with the site.

The Java Deployment Toolkit was reported vulnerable by Java. There hasn't been a update for the Toolkit yet.

Java recommends disabling this plugin, via the Firefox plugin manager.

I have attached a screenshot of how to disable the plugin for the Firefox plugin manager.

more options

ComputerWhiz, thank you for your answer. My question was not about this pop-up appearing, my question is about behavior of this pop-up... why does it move my menu bar from the top of the page to the middle? At the current moment, I have found that this pop-up is added by FireFox to the first div tag of the page... According to my code, application's panel is described at the first div tag. Menu bar is the second div tag... As I've found in css, menu bar has 'position: relative' style. So It seems to be the rootcause.

When I get this problem fixed, I will confirm what is the rootcause

more options

I am unsure what is causing the issue.

It is most likely just an issue in the CSS programming for that website.

I hope you are able to find the issue soon.

Please report back soon.

more options

Keazen oplossing

ComputerWhiz, yes, it was CSS issue. This site uses ExtJs library and menu bar is 'panel' in ExtJs. Default CSS for ExtJs panels has 'position: relative'. When this pop-up appears, FF put it at the first div tag and that is why menu bar is redrawn. I have tried 1) to override 'position' from 'relative' to 'absolute' 2) to add into css 'z-index=9999' (with 'opacity= .99' to get z-index applied) but it has been all in vain.

So the fix was changing 'position' from 'relative' to 'fixed' with adding the following fields: 'top: 1px; right: 1px' (left top corner).