BottomTitle plugin is broken if ButtonGroup is given explicith Height

  1. #1

    BottomTitle plugin is broken if ButtonGroup is given explicith Height

    Hello the following code shows broken bottom title:

    <ext:ButtonGroup runat="server" Height="94" Title="Clipboard">
        <Items>
            <ext:TableLayout runat="server" Columns="2">
                <Cells>
           
                    <ext:Cell>
                        <ext:Button runat="server" Text="Copy" IconCls="add16" />
                    </ext:Cell>
                  
                    <ext:Cell>
                        <ext:Button runat="server" Text="Format" IconCls="add16" />
                    </ext:Cell>
                </Cells>
            </ext:TableLayout>
        </Items>
        <Plugins>
            <ext:BottomTitle runat="server" />
        </Plugins>
    </ext:ButtonGroup>
    This happens because ButtonGroup is given explicit height. Can you offer a work around ?

  2. #2

    RE: BottomTitle plugin is broken if ButtonGroup is given explicith Height

    I was able to reproduce the defect. The following sample demonstrates how to reproduce with a full .aspx.

    Example

    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Ext.NET Examples</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
    
            <ext:Panel runat="server" Height="300" Title="Title">
                <TopBar>
                    <ext:Toolbar runat="server">
                        <Items>
                            <ext:ButtonGroup runat="server" Height="94" Title="Clipboard">
                                <Items>
                                    <ext:TableLayout runat="server" Columns="2">
                                        <Cells>
                                            <ext:Cell>
                                                <ext:Button runat="server" Text="Copy" IconCls="add16" />
                                            </ext:Cell>
                                            <ext:Cell>
                                                <ext:Button runat="server" Text="Format" IconCls="add16" />
                                            </ext:Cell>
                                        </Cells>
                                    </ext:TableLayout>
                                </Items>
                                <Plugins>
                                    <ext:BottomTitle runat="server" />
                                </Plugins>
                            </ext:ButtonGroup> 
                        </Items>
                    </ext:Toolbar>
                </TopBar>
                <Items>
                </Items>
            </ext:Panel>
        </form>
    </body>
    </html>
    We're investigating a fix...

    Geoffrey McGill
    Founder
  3. #3

    RE: BottomTitle plugin is broken if ButtonGroup is given explicith Height

    Hi,

    Workaround: to set explicit width (for example, Width="120")

Similar Threads

  1. [CLOSED] Grid RowEditing Plugin - Height
    By adelaney in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 13, 2012, 9:00 PM
  2. [CLOSED] [1.0] BottomTitle Plugin Bug
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Apr 18, 2011, 10:19 AM
  3. [CLOSED] [1.0] ValidationStatus plugin icons broken
    By tdracz in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: May 07, 2010, 8:25 PM
  4. [CLOSED] [1.0] ButtonGroup BottomTitle plugin in IE8
    By danielg in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 19, 2010, 4:29 AM
  5. [CLOSED] ButtonGroup Bug
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Dec 13, 2009, 2:42 AM

Posting Permissions