Login Register

No scrollbars?

Hi all,

I need to make sure that the HMTL page I see in the browser will never force the browser to display scroll bars. I am using dojo within that page and whenever the scroll bars appear this moves some moveable elements on the screen.

Is there a global dijit settign that tells dojo to never try position elements (like Moveable) out of the viewport?

Cheers\
Sven

overflow?

I'm not sure if this is quite what you're asking... you can set some CSS to prevent scrollbars:

HTML,BODY {
  overflow:hidden;
}

Note that its not a nice solution - if the content on your page is scaled so it doesn't fit anymore (eg. enlarging text size) then the user won't be able to access anything that doesn't fit on the screen.

- Rob