vaxace
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
10:56 AM
Can't scroll down in roGridScreen
Ok. I've got my roGridScreen displaying correctly (Thanks to RokuChris and TheEndless 🙂 ).
One problem remaining: I can't scroll down to any row below the top one (there are 10).
Ideas?
Thanks,
Dave
One problem remaining: I can't scroll down to any row below the top one (there are 10).
Ideas?
Thanks,
Dave
4 REPLIES 4


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
11:10 AM
Re: Can't scroll down in roGridScreen
A few possible causes:
The grid is kind of picky about the order you do things in. It needs to be SetupLists(), SetListNames(), then Show()
- Calling SetListNames() before SetupLists()
- Not calling SetListNames() at all
- Calling SetListNames() with an array whose length does not match the number of rows you specified in the call to SetupLists()
The grid is kind of picky about the order you do things in. It needs to be SetupLists(), SetListNames(), then Show()
vaxace
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
11:22 AM
Re: Can't scroll down in roGridScreen
Actually, I call SetupLists() and then call SetListName() inside my init loop.
Is that not a correct usage?
Thanks,
D.
Is that not a correct usage?
Thanks,
D.


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
11:30 AM
Re: Can't scroll down in roGridScreen
"vaxace" wrote:
Actually, I call SetupLists() and then call SetListName() inside my init loop.
Is that not a correct usage?
I've never done it that way. The best practice is to use SetListNames() when setting up the screen. SetListName() can be used to change individual row names later on. You can probably still make your approach work by adding a call to SetListNames() with an array of empty strings before you start your loop.
vaxace
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2011
11:36 AM
Re: Can't scroll down in roGridScreen
That's got it.
Thanks very much.
Dave
Thanks very much.
Dave