Postback in window on desktop

Hybrid View

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

    Postback in window on desktop

    Hello.
    I'm trying to dynamically create windows on the desktop Ext but pressing the "Alt" key do windows postback. Annex my code. Thank you.

            [DirectMethod(ShowMask = true)]
            public void CreateWindowVentana(string Formulario, string Url, bool Maximizar, bool Ajustar)
            {
                Ext.Net.Desktop.GetInstance().CreateWindow(new Window
                {
                    Title = Formulario,
                    Width = 1055,
                    Height = 512,
                    Maximizable = Maximizar,
                    Maximized = Maximizar,
                    CloseAction = CloseAction.Destroy,
                    Icon = Ext.Net.Icon.UserSuit,
                    Resizable = Ajustar,
                    Loader = new ComponentLoader
                    {
                        Mode = LoadMode.Frame,
                        Url = Url,
                        ReloadOnEvent = true
                    }
                });
            }
  2. #2
    Hi @jorg,

    Welcome to the Ext.NET forums.

    I don't quite understand the problem. Please elaborate on that.
  3. #3

    Reload

    Quote Originally Posted by Daniil View Post
    Hi @jorg,

    Welcome to the Ext.NET forums.

    I don't quite understand the problem. Please elaborate on that.
    Click image for larger version. 

Name:	001X.png 
Views:	15 
Size:	68.7 KB 
ID:	10511Click image for larger version. 

Name:	002X.png 
Views:	16 
Size:	37.8 KB 
ID:	10521

    window load fine but when you press a control key such as the case of the "Alt" key controls of the window, in the images are reset can see before and after.
  4. #4
    Sorry, I have no idea what is happening.

    If you can provide a full and runnable sample and exact steps how to reproduce the problem, we could investigate.

Similar Threads

  1. Replies: 1
    Last Post: Dec 04, 2012, 6:22 AM
  2. [CLOSED] How to position a window into a desktop on window open
    By feanor91 in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Nov 26, 2012, 1:59 PM
  3. [CLOSED] Minimize window created in another desktop window
    By CarWise in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Oct 03, 2011, 1:46 PM
  4. Refreshing desktop control from desktop window
    By AnilVelamuri in forum 1.x Help
    Replies: 0
    Last Post: May 26, 2010, 7:53 AM
  5. Replies: 3
    Last Post: Feb 03, 2009, 5:57 PM

Posting Permissions