cancel
Showing results for 
Search instead for 
Did you mean: 

Scrollbar in an overflowContainer

Former Member
0 Kudos

We have an overflowContainer and the scrollbar should be scrollable only in some portion of it. We need this in order to fix the first and the second row of a tableView inside the overflowContainer

Do you know how to do this???

Thanks in advance.

Maria

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

There´s no such option for the overflowContainer !! You better create a text output for your first and second row and below that text you can create your table.

Former Member
0 Kudos

Thanks but we can't do that because the header changes and columns are dynamic. Furthermore we use the first row to sort and the second row to filter.

Does this option exist for a tableview (in htmlb)?

Thanks.

Maria

athavanraja
Active Contributor
0 Kudos

<i>Furthermore we use the first row to sort and the second row to filter. Does this option exist for a tableview (in htmlb)?</i>

yes. you can use header row (column heading) for sorting and the next row for filter.

to enable these features you just need to set the following

<htmlb:tableView id=...

<b> sort = "SERVER"

FILTER = "SERVER"</b>

Regards

Raja

former_member191062
Active Contributor
0 Kudos

Hello,

there is no standard solution for this.

An alternative solution cloud be, to only display so many columns at a time that can be displayed on the screen, and place 'pager' buttons on the screen. When the user clicks this button a roundtrip is generated and a new table is displayed (with the colums that should be visible in the

given range) So at the server side you always render the fisrt X column (the 'always visible colums') and only the colums in the range wich should be displayed.

In this case you would use the scrollbar of the browser but your own 'scroll buttons'.

This would be a possibble soultion, but this is something you have to implement yourself.

I hope this helps you to find an acceptable solution.

Best regards,

Dezso