Hi folks,
I have trouble trying to paginate a roGridScreen, someone know how to do it?
I'm doing this:
' Content = roAssociativeArray of X items (for example, 25 per page)
' Total = roAssociativeArray of Total Items (for example, 80 blank items)
screen.SetContentList(1, Total)
screen.SetContentListSubset(1, Content, 0, 25)
This code don't work... only make a list with screen.SetContentListSubset(1, Content, 0, 25) and I want to show 80 items (25 of content and 55 blank to be filled using pagination)
I'm sorry for the explanation...