Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

binjaja

macrumors newbie
Original poster
Nov 13, 2008
10
0
I have a very simple html file that has a scrollable table:

HTML:
<html>
<head>
</head>
<body>
<table>
    <thead>
        <tr><th>This is the header and doesn't scroll</th></tr>
    </thead>
    <tbody style="height:100px; overflow:auto;display:block;">
        <tr><td>content that scrolls</td></tr>
        <tr><td>content that scrolls</td></tr>
        <tr><td>content that scrolls</td></tr>
        <tr><td>content that scrolls</td></tr>
        <tr><td>content that scrolls</td></tr>
        <tr><td>content that scrolls</td></tr>
        <tr><td>content that scrolls</td></tr>
    </tbody>
</table>
</body>
</html>


In Mozilla and Safari you see scrollbar next to the table.
However, when I look at the same html using UIWebview there are no scrollbars!

Is there something that must be set in UIWebview to see them?

thanks!
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.