[CLOSED] How To Append Window to button

  1. #1

    [CLOSED] How To Append Window to button

    Hi! im trying to create a window append a button like this example:
    Click image for larger version. 

Name:	plantilla.png 
Views:	51 
Size:	15.6 KB 
ID:	4233
    I was looking at the examples of buttons with menus, but not shown to a window, thanks for your help!.
    Last edited by Daniil; May 14, 2012 at 3:23 PM. Reason: [CLOSED]
  2. #2
    Hi,

    I can suggest the following solution.

    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 Example</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            <ext:Button runat="server" Text="Layout">
                <Menu>
                    <ext:Menu runat="server">
                        <Items>
                            <ext:Panel 
                                runat="server" 
                                Height="400" 
                                Width="400"
                                Title="Office Theme" 
                                Html="Layouts" />
                        </Items>
                    </ext:Menu>
                </Menu>
            </ext:Button>
        </form>
    </body>
    </html>
  3. #3
    Excelent, thanks Daniil

Similar Threads

  1. [CLOSED] Append a fully loaded child in a remote TreePanel
    By RCN in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: May 30, 2012, 12:23 PM
  2. Replies: 7
    Last Post: Feb 09, 2012, 11:17 AM
  3. [CLOSED] TreePanel Append node id
    By jesperhp in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Nov 18, 2011, 6:22 AM
  4. [CLOSED] Button event is not firing in parent window from popup window
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 14, 2011, 7:35 PM
  5. Replies: 0
    Last Post: Jun 18, 2010, 6:34 AM

Posting Permissions