tags:

views:

66

answers:

1

Hi,

I Have a VBox, and set the verticleGap = 0. Inside the VBox I have a Repeater. When I run the App, the items listed from the Repeater have a large gap between each line. Is there a way to set the verticleGap on the Repeater, or reduce that space?

Thanks

+1  A: 

Two things: First, the property is misspelled, it should be "verticalGap" for your VBox. Second, if your repeated components are all the same height, you could set an explicit height for your Repeater component, such as height="22". Hope that helps.

Wade Mueller
Sorry about the typo. So the height set on the Repeater, isn't the height of the entire area. Duh! Makes sense. I do have a height set on the Repeater. Let me adjust it. Thanks
Dana
Worked. Thanks!
Dana
Great, glad I could help.
Wade Mueller
Also, if this answer was helpful for you, feel free to upvote it. ;)
Wade Mueller