Greetings,
We're using Ver 8. I have a vLayout that contains an HTMLFlow and a viewLoader. Under those I have a footer container. If the HTMLFlow or viewLoader get set with contents that are larger than the size of the vLayout, I would expect it to expand. It does not however. Instead, the Flow or Loader overlap the footer, which is the last member of the vLayout. I've tried everything I can think of, but can't make it work properly. Is this expected behavior?
We're using Ver 8. I have a vLayout that contains an HTMLFlow and a viewLoader. Under those I have a footer container. If the HTMLFlow or viewLoader get set with contents that are larger than the size of the vLayout, I would expect it to expand. It does not however. Instead, the Flow or Loader overlap the footer, which is the last member of the vLayout. I've tried everything I can think of, but can't make it work properly. Is this expected behavior?
Code:
<!-- Content panes -->
isc.ViewLoader.create({
top:100,
left:170,
width:"100%",
height:"100%",
allowCaching:true,
loadingMessage:"",
ID:"contentPaneLoader",
autoDraw:false
});
<!-- content pane -->
isc.HTMLFlow.create({
width:"100%",
height:"100%",
dynamicContents:true,
ID:"contentPaneHTML",
contents:"",
autoDraw:false
});
isc.HLayout.create({
members:[
leftNavLayoutContainer,
contentPaneHTML,
contentPaneLoader
],
height:"100%",
ID:"contentContainerHLayout",
border:"1px solid orange",
width:"100%",
membersMargin:7,
overflow:isc.Canvas.VISIBLE,
autoDraw:false
})
isc.VLayout.create({
members:[
contentContainerHLayout,
LayoutSpacer020,
footerCanvas
],
height:"100%",
ID:"topVLayoutContainer",
width:layoutSize,
top:65,
overflow:isc.Canvas.VISIBLE,
autoDraw:true
})
Comment