cancel
Showing results for 
Search instead for 
Did you mean: 

Make a table scroll

david_fryda2
Participant
0 Kudos

Hi,

I created a table which I want to display all of its rows at once in a scrolling mode.

I tried many times to achieve that but without success.

Can someone help?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

(Non-recommended) way to achieve this: Table.visibleRowCount = -1 (all), Table.scrollingMode = none, ScrollContainer around Table.

Armin

david_fryda2
Participant
0 Kudos

Hi Armin,

Why it is not recomended ?

By the way I tried what you said but it does not display any scrolling....

Thanks.

Former Member
0 Kudos

Which scrollingMode has the ScrollContainer?

It is not recommended because it leads to performance problems for large tables and because of accessibility reasons.

Armin

david_fryda2
Participant
0 Kudos

Hi Armin,

It still does not surround thetable with a scrolling bars.

In the ScrollContainer, I defined scrollingMode with the 3 modes but none of them works.

Am I missing something ?

Thanks

david_fryda2
Participant
0 Kudos

Hi Armin,

Suddenly it works.

Thank you for the help.

Former Member
0 Kudos

Hi,

I dont have property Table.scrollingMode

its version problem??

thnks

Evgeny

Former Member
0 Kudos

No, this is a property of ScrollContainer. In NW 7.1, the table has a scrollbar on its own so you don't have to use a ScrollContainer around it.

Armin

Former Member
0 Kudos

Hi All,

Im trying to get a SCROLLBAR on my table view model. I using JSPDynpage. I am on NW2004s, SP 14, NWDS Version: 7.0.14

Please help and suggest how to get the scrollbar on the table view.

Here is what I have.

<hbj:tableView

id="sampleList"

model="DAO.model"

design="ALTERNATING"

headerVisible="true"

footerVisible="true"

fillUpEmptyRows="false"

navigationMode="BYPAGE"

headerText="Sample Table"

onNavigate="myNavigate"

visibleFirstRow="20"

visibleRowCount="10"

width="730" >

</hbj:tableView>

Thanks

SB

Answers (0)