Table, show selected row

A table has 108 rows and about 10 rows are shown. Then app selects a row. Now when app selects a row sometimes this special row is on the screen - 10/108 possibilities from the beginning . How this selected (highlighted) row can be shown on the screen every time?

paganaTable.setWidth("160");
paganaTable.setHeight("240");
paganaTable.select(14);

Tapani

I did this on my table class:

this.select(40);
		this.setCurrentPageFirstItemIndex(40);

and got this effect (to display select(4) as first row you would do setCurrentPageFirstItemIndex(3)):
11189.png

This works well for me.
Thanks