<grouplist> doesn't scroll as I'd expect
#1
I'm trying to create a grouplist of poster rows where the height of the grouplist is the same as the height of the poster row and I'd expect that when I scroll down to the next poster row the the old row would scroll completely out of the top and the new row would scroll up to replace it. However that doesn't happen, when I scroll to the next row the previous doesn't scroll and the new row becomes selected but it's hidden outside the grouplist bounding box.

My grouplist setup:-
xml:
<control type="grouplist" id="5001">
        <left>0</left>
        <top>700</top>
        <width>1920</width>
        <height>320</height>
        <itemgap>320</itemgap>
        <usecontrolcoords>false</usecontrolcoords>

        <List of posters 320px high........>
        <List of posters 320px high........>
        <List of posters 320px high........>
</control>

Any ideas? Thanks
Reply
#2
Your itemgap should be 0 not 320 as that will make the distance between each row 640 in height; twice as much as the grouplist.
Reply
#3
I've tried itemgap 0 and then all the rows are just drawn on top of each other Sad

Ok, stupid mistake on my part...... Sorry.

My poster lists are contained in a group and I wasn't setting the <height> of the group, working fine now, thanks Smile
Reply
#4
try putting in a group
<orientation>vertical</orientation>
  <height>330</height>

you can try this out on esturay includeshome.xml
Reply

Logout Mark Read Team Forum Stats Members Help
<grouplist> doesn't scroll as I'd expect0