We have some scenarios where a height is specified as a percentage but it always takes the parent's height. Is this property supported for HTML Flow?
Code:
isc.VStack.create({
ID:"VerticalLayouttest",backgroundColor:"blue",
name:"VerticalLayouttest",
vPolicy:"fill",
hPolicy:"fill",
height:700,
width:"100%",
members:
[isc.HTMLFlow.create({
backgroundColor:"red",
title:"HTMLContenttest",
contents:"blah b;ahblkhaldjaldjaldjajdalda",
height:"33%",
overflow:"visible",
width:"100%"})
]
});
Comment