Results 1 to 3 of 3

Thread: piWidth and cWebPanel

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default piWidth and cWebPanel

    I need cWebView to fill the entire width. I'm setting piWidth to cWebView = 0.

    I need to define cWebPanel (peRegion = prTop) with fixed width.
    And set cWebPanel (peRegion = prCenter) to fill the entire width.

    When I set the piWidth property in cWebPanel, nothing happens.

    How can I resolve my situation?
    Regards,

    Gleidson Maia
    Brazil

  2. #2

    Default Re: piWidth and cWebPanel

    Gleidson,

    We've had to use a custom css class to set the width. Examples included below. Note that I'm not 100% sure the !important is necessary but that's what is in my css file.

    Hope this helps,

    Jeff

    #OWEBAPP .customWidth
    {
    width:100px !important;
    }

    #OWEBAPP .FillScreen
    {
    width:100% !important;
    }

  3. #3
    Join Date
    Feb 2009
    Location
    The Netherlands
    Posts
    4,674

    Default Re: piWidth and cWebPanel

    A top panel always spans the entire width. You could have placed a left panel inside that top panel to get the layout you wanted.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •