[CLOSED] Render a new window out of my current window.

  1. #1

    [CLOSED] Render a new window out of my current window.

    Hallo,

    I´m trying to render a new window out my current window using DirectEvents.

    I already read all posts about render a windows but I did`nt find anyone that show how to render out of my parent window.

    In my case I have 3 windows to open. A first window is a main, the second window obvious is a second place inside my first window. But my third window is not inside of my second window, should be inside of my first window like my second however the third window should be called by a button inside of my second window.

    My second window code that call my third window:

     Window winPdf = new Window
                                        {
                                            ID = "WinThird",
                                            Title = "Document",
                                            Height = 600,
                                            Width = 880,
                                            BodyPadding = 5,
                                            Modal = false,
                                            CloseAction = CloseAction.Destroy,
                                            Loader = new ComponentLoader
                                            {
                                                Url = string.Format("~/App/Dx/Document/View/ViewPdf.aspx?IdVersion={0}", IdVersion),
                                                Mode = LoadMode.Frame,
                                                LoadMask =
                                                {
                                                    ShowMask = true
                                                }
                                            }
                                        };
    
                                        winPdf.Render(); // How to render my third window inside of my first window ?
    I now this sounds very complicated, but is not.

    Thanks in advance.
    Last edited by Daniil; May 05, 2015 at 3:32 PM. Reason: [CLOSED]
  2. #2
    Hi @debarry,

    There are some suggestions.
    http://forums.ext.net/showthread.php...ll=1#post73736

    I would recommend to read the entire discussion.

Similar Threads

  1. [CLOSED] Buttons and Window Render
    By alessandra.monica in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Dec 17, 2013, 1:05 PM
  2. [CLOSED] render window with hide.event
    By gidi in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Jul 12, 2012, 2:44 PM
  3. Replies: 2
    Last Post: Jan 10, 2012, 12:23 AM
  4. Can't render window controls
    By Snargleflap in forum 1.x Help
    Replies: 3
    Last Post: May 07, 2009, 4:27 PM
  5. How to fine current window id
    By Mohammad Yakub in forum 1.x Help
    Replies: 1
    Last Post: Apr 28, 2009, 2:13 PM

Tags for this Thread

Posting Permissions