views:

270

answers:

2

Hi

I have a regualar HTML table to be displayed on blackberry application. It displays data perfectly fine with scroll bar using overflow property. But this scrollbar is not very user friendly, it bearly works. Pagination cannot work because the height of the table is specified by user and it will make the application very slow due to reloading.

Is there any other option to make scrollbar work properly. thanks

A: 

Fundamentally, the answer is to make a version of the UI that works on a blackberry-sized screen. If your application is properly structured, that is pretty easy as its just another view on your data.

Wyatt Barnett
I still have to show eg. 1000 records in a table. And the height is restricted by user. So I will still need scrollbar.
ssal
Might just be me, but pulling 1000 records on a mobile device is a bit self defeating. How long do you want a user to wait to get the screen?
Wyatt Barnett
A: 

If you're displaying this in the BlackBerry browser, then no, there is no way to improve its scroll bar.

ntownsend
what can be the alternate option .. ?
ssal
The only thing I can think of is to have the page dedicated to the list of records rather than just a scrollable fixed-height table. Then you can scroll the page with the trackball/trackpad/finger-swipe to view the records, which is a lot simpler and more intuitive for the user.
ntownsend