cancel
Showing results for 
Search instead for 
Did you mean: 

vertical scrolling in table

Former Member
0 Kudos

Hello

I have a table, and the user does not want to use the default buttons for navigation. Is it possible to attach a vertical scrolling for table?

Thank you

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can put the table inside a ScrollContainer, set the visibleRowCount to -1 (which will display all rows), and remove the footer.

This may lead to performance problems if the table gets very large.

Armin

Answers (1)

Answers (1)

Former Member
0 Kudos

As an alternative to Armin suggestion:

1. Create all columns

2. Bind visibility of certain columns to context attributes.

3. Create set of buttons for scrolling (first, prev, next, last)

4. In event handler(s) for this buttons switch visibility of necessary columns on/off and achieve visual effect of scrolling.

Note A: Next version (NW04s) implement scrolling almost this way.

Note B: This solution should have better performance characteristics while WD push back to client only visible elements.

VS

Former Member
0 Kudos

Valery, your solution will only scroll left and right, not up and down....

Former Member
0 Kudos

Oops, my mistake!

I don't know why but I've read "horizontal" instead of "vertical"

VS