I Am developing a phoneGap application on Blackberry webworks. the overflow scroll property works fine on android, iphone..but it is not working on blackberry webworks on nonTouch devices.
Here is my code.
  <div class="ExternalClassTable" data-scroll="x" x-blackberry-focusable="true">
    <table>....</table>
  </div>
  css:
   .ExternalClassTable{
     width : 90%;
     max-width : 520px;
     overflow-x : scroll;
     }
 
    