Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    vLayout not growing to accommodate viewLoader or HTMLFlow

    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?

    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
    })

    #2
    This is most likely due to some kind of unusual HTML being placed in the HTMLFlow or some usage issue with the ViewLoader, but we're not going to be able to tell you anything more from this sample code, which doesn't contain any of the pieces that are misbehaving.

    Comment

    Working...
    X