Run the code below - there is a menu with label "GridLayout" being pushed to a negative y-position (screenshot attached). if I remove "defaultLayoutAlign" then it works properly - shows all the menus from the very first, and provides a scrollbar for others that cannot be shown within the 100px layout limit.
Code:
isc.HLayout.create({ID:"HorizontalLayout",
name:"HorizontalLayout",title:" ",
canHover:true,showResizeBar:false,height:1,width:"100%",overflow:"visible",
members:
[isc.HLayout.create({ID:"HorizontalLayout1",
name:"HorizontalLayout1",title:" ",canHover:true,showResizeBar:false,height:100,width:"100%",
overflow:"auto",defaultLayoutAlign:"center",members:
[isc.VLayout.create({ID:"VerticalLayout1",name:"VerticalLayout1",title:" ",
canHover:true,showResizeBar:false,height:1,width:1,members:
[isc.MenuButton.create({ID:"GridLayout",
canFocus:true,title:" Grid Layout",showDown:false,showFocused:false,showEmptyMessage:false,showRollOver:false,
autoFit:true,baseStyle:"CwMEIDef",align:"bottom",showMenuButtonImage:false}),
isc.MenuButton.create({ID:"HorizontalLayoutTest",canFocus:true,title:" Horizontal Layout",
showDown:false,showFocused:false,showEmptyMessage:false,showRollOver:false,autoFit:true,
baseStyle:"CwMEIDef",align:"bottom",showMenuButtonImage:false}),
isc.MenuButton.create({ID:"HorizontalLayoutTest2",canFocus:true,title:" Horizontal Layout",
showDown:false,showFocused:false,showEmptyMessage:false,showRollOver:false,autoFit:true,
baseStyle:"CwMEIDef",align:"bottom",showMenuButtonImage:false}),
isc.MenuButton.create({ID:"HorizontalLayoutTest3",canFocus:true,title:" Horizontal Layout",
showDown:false,showFocused:false,showEmptyMessage:false,showRollOver:false,autoFit:true,
baseStyle:"CwMEIDef",align:"bottom",showMenuButtonImage:false}),
isc.MenuButton.create({ID:"HorizontalLayoutTest4",canFocus:true,title:" Horizontal Layout",
showDown:false,showFocused:false,showEmptyMessage:false,showRollOver:false,autoFit:true,
baseStyle:"CwMEIDef",align:"bottom",showMenuButtonImage:false}),
isc.MenuButton.create({ID:"HorizontalLayoutTest",canFocus:true,title:" Horizontal Layout",
showDown:false,showFocused:false,showEmptyMessage:false,showRollOver:false,autoFit:true,
baseStyle:"CwMEIDef",align:"bottom",showMenuButtonImage:false})
]})]})]});
Comment