[OPEN] [#450] A Panel's Frame="false" and UI="Primary" causes wrong rendering of Tools

  1. #1

    [OPEN] [#450] A Panel's Frame="false" and UI="Primary" causes wrong rendering of Tools

    If configure a Panel with Frame="false" and UI="Primary", its Tools renders wrong.

    With Frame="true" and any other UI it appears to be OK.

    Example
    <%@ Page Language="C#" %>
    
    <!DOCTYPE html>
    <html>
    <head runat="server">
        <title>Ext.NET v2 Example</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
    
            <ext:Panel 
                runat="server" 
                Title="Panel" 
                UI="Primary" 
                Width="100">
                <Tools>
                    <ext:Tool Type="Plus" />
                </Tools>
            </ext:Panel>
    
            <ext:Panel 
                runat="server" 
                Title="Panel" 
                UI="Primary" 
                Width="100"
                Frame="true">
                <Tools>
                    <ext:Tool Type="Plus" />
                </Tools>
            </ext:Panel>
        </form>
    </body>
    </html>
    Last edited by Daniil; Mar 13, 2014 at 4:35 AM. Reason: [OPEN] [#450]

Similar Threads

  1. <%@ Page Language="C#" Buffer="false" %>
    By zanotto in forum 2.x Help
    Replies: 2
    Last Post: Nov 21, 2013, 4:32 PM
  2. [CLOSED] How does "MaskCls" work for "AutoLoad" mask in panel control
    By leon_tang in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Jul 19, 2012, 12:09 PM
  3. [CLOSED] Hidden="true" behaves as Visible="false"
    By marco.morreale in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: May 28, 2012, 3:17 PM
  4. Replies: 5
    Last Post: May 02, 2012, 5:37 PM
  5. Replies: 0
    Last Post: Jan 18, 2011, 3:53 AM

Posting Permissions