windowsscrollbarhiddentidesdk

Scrollbar shows up on Windows


I have a problem with TideSDK on Windows 8.

I have in my tiapp.xml:

<chrome scrollbar="false">true</chrome>

But even with that, scrollbars show up, why?

I can hide them with jQuery or CSS using

overflow: hidden;

But I can't scroll anymore after that.

Can you help me please?

Sorry for my bad English, I'm French.


Solution

  • This 6 year old answer is no longer a valid if you're dealing with Mobile...

    --- OG Answer ---

    Use the :hover selector on the scrollable pane...

    .scrollpane {
        overflow:hidden;
    }
    .scrollpane:hover {
        overflow-y:scroll;
    }