cancel
Showing results for 
Search instead for 
Did you mean: 

first visible row on a CatalogTable

Former Member
0 Kudos

My first visible row property on a CatalogTable is always display at row 2. I've set the property to 1 in the layout design and I've tried setting it using within the wdDoModifyView, but it still displays row 2 first. This causes my users to perform a page up to see row 1. Can anyone tell me why I cannot set it correctly?

IWDTable tv = (IWDTable)view.getElement("CatalogTable");

tv.setFirstVisibleRow(1);

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Had to live with it.

Former Member
0 Kudos

Bonk! No good!

I had tried that, but for fun I tried again with no success. Any other suggestions? I'm beginning to think this is a bug.

former_member182372
Active Contributor
0 Kudos

Hi Steve,

Just a guess - may be something wrong with lead selection of datasource node? May be it is et to second element?

Best regards, Maksim Rashchynski.

siarhei_pisarenka3
Active Contributor
0 Kudos

Hi Steve

IWDTable tv = (IWDTable)view.getElement("CatalogTable");
tv.setFirstVisibleRow(<b>0</b>);

BR

Sergei