[CLOSED] Panel inside of a framed panel

  1. #1

    [CLOSED] Panel inside of a framed panel

    Hello,

    Was wondering, why when I have a panel inside of a frame panel the borders do not show?

    Example:

    <ext:Panel runat="server" frame="true">
        <Items>
            <ext:Panel runat="server" Title="Test" Border="true">
                <Content>
                    Example
                </Content>
            </ext:Panel>
        </Items>
    </ext:Panel>
    Cheers,
    Timothy
    Last edited by Daniil; Mar 15, 2011 at 7:57 AM. Reason: [CLOSED]
  2. #2
    Hi,

    Frame panel has css selector which disables the border for the panel's body
    .x-panel-mc .x-panel-body{
       border: 0px;
    }
    That css rule affects on inner panel also. Therefore the single way yo show the border is define css rule manually for inner panel
    BodyStyle="border: 1px solid #99bbe8;border-top:0px;"
  3. #3
    Resolved.

    Cheers,
    Timothy

Similar Threads

  1. viewport inside panel
    By UserClarion in forum 1.x Help
    Replies: 6
    Last Post: Jun 29, 2012, 7:17 AM
  2. Center a panel inside another panel
    By PAOLO in forum 1.x Help
    Replies: 0
    Last Post: Oct 03, 2011, 3:44 PM
  3. Replies: 7
    Last Post: Feb 01, 2011, 11:00 AM
  4. Desktop inside a panel
    By shijith in forum 1.x Help
    Replies: 0
    Last Post: Sep 17, 2010, 10:22 AM
  5. Replies: 0
    Last Post: Jan 25, 2009, 4:36 AM

Posting Permissions