Select to view content in your preferred language

Widgets gap

618
1
09-29-2011 07:28 AM
FaizanTayyab
Deactivated User
Currently the gap in the widget container is set using the code

var vLayout:VerticalLayout = new VerticalLayout;
                            vLayout.horizontalAlign = "right";
                            vLayout.paddingBottom = 10;
                            vLayout.paddingRight = 25;
                            vLayout.paddingTop = 10;
                            vLayout.gap = 8;
                            widgetContainer.layout = vLayout;
                            isDraggable = false;
                            isResizeable = false;


which works fine, but when i try to reduce this gap
vLayout.gap = 2;


the widgets start to overlap on minimize. Is there any way to reduce the gap and prevent the overlap from happening.

Thanks
Tags (2)
0 Kudos
1 Reply
RobertScheitlin__GISP
MVP Emeritus
Faizan,

  Unless you want to completely rewrite the widget template transition you are stuck with a min of 8 I actually use 10.
0 Kudos