cancel
Showing results for 
Search instead for 
Did you mean: 

table paging

Former Member
0 Kudos

hi everyone,

I meet a prob about table paging in my webdynpro application with Java. Could you give me some advice to me?

I use a table UI in my application, and set the attribute table visible row to 5. If the nuber of data records is over 6, the table paging button will be used. But if click page down btn, the 2nd-5th rows of data will be shown. How to just show the 6th records on the next page when clicking page down ? Ur any sugestion will be appreciated.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Set visiblerowcount property accordingly and use First visibleRow property.

In the action of the Button, use the moveTo(int) method. increment the integer to 5 for everyclick

Regards

Saravanan K

Former Member
0 Kudos

Hi Julian,

you can disable the table footer (property "footerVisible") and place your own buttons to modify the table.

In the action handlers of the buttons you can modify the table UI property "firstVisibleRow".

Regards

Sebastian

Former Member
0 Kudos

Hi Saravanan K,

the visisblerowcount property of 5 is fixed. I just want to show the new records, which doesn't appear on the previous page when clicking the page down btn

Former Member
0 Kudos

Hi,

The table footer provides with three buttons for paging actually.

1. To show the next row.

2. To show the next page. (This is the one you are looking for?)

3. To show the last page.

Regards,

Satyajit.

Answers (0)