cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding Table pagination

Former Member
0 Kudos

I am having table with first column with check box. By default I am displaying 10 rows in the table. If I click on next page, next 10 records are getting displayed. Now if we click on some other link and then come back to the same link still it is displaying next page. How to refresh the page of the table? In the footer of the table we are having row no to enter. Can we map some context to that value so that whenever we click that link we can set it to 1? I did not find any property to set for that in the table property.

Thanks in Advance!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

While coming back set the leadselection of the node bound to the table as 0.

wdContext.node<YourNode>().setLeadSelection(0);

Regards

Ayyapparaj

Answers (2)

Answers (2)

Former Member
0 Kudos

......

Former Member
0 Kudos

Property is named "firstVisibleRow".

Armin