ScrollViewBigPanel Example: ListView

KMatle

Expert
Licensed User
Longtime User
Hi guys,

I tried out the "big panel" example from Klaus.

Works great except the following:

I've put 2 spinners on it. When I click on those, I can scroll through the list of values (as expected).

Then I've put a Listview on the panel (via designer). The whole panel scrolls perfectly, but I can't scroll inside the Listview (only sometimes when I click at some mysterious space next to the left border. Then it works for a short time, but I can't repeat that).

Any ideas?
 

KMatle

Expert
Licensed User
Longtime User
Thanks, Klaus.

Any idea of an option for me?

I would like to have about 300-400 scrollable lines of output on the same panel. My problem are devices (phones) with small screen sizes. So i started to like the idea of a large & scrollable panel.
 
Upvote 0

klaus

Expert
Licensed User
Longtime User
What exactly do you want to do ?

There is no problem, but for several hundreds of lines you have several options depending on what you want to dispaly an how. You can have a:
- ListView with its limitations on different views on a same line but optimal for hudge numer of lines.
- ScrollView, in this case for some hundreds of lines you should add them in the code.
- CustomListView
- Table Class

Best regards.
 
Upvote 0
Top