I'm having a problem populating a CustomListView. It is only ever adding one of the items (the last one added).
See attached project.
Once you click the "Sign in" button, you should see a window with a CustomListView of buttons on the left-hand side. I'm adding three. However, it only ever displays one (the last one added to the CLV). What am I doing wrong?
newMenuBttn panel needs a height. As is, it has a height of 0 and therefore each CLV item starts at the top of the CLV (0+0=0, so each panel stacks on top of each other).
newMenuBttn panel needs a height. As is, it has a height of 0 and therefore each CLV item starts at the top of the CLV (0+0=0, so each panel stacks on top of each other).