[CLOSED] passing values from Ext.Net.Window to Page from where this Ext.Net.Window popup

  1. #1

    [CLOSED] passing values from Ext.Net.Window to Page from where this Ext.Net.Window popup

    Hi,

    is there any functionality to pass values from Ext.Net.Window with IFrame mode to the Page which popup this Window?

    I've create Window on buttonClick event
                Ext.Net.Window window = new Ext.Net.Window();
                window.MaskDisabled = true;
                window.Height = Unit.Pixel(800);
                window.Width = Unit.Pixel(1200);
                window.AutoLoad.Mode = LoadMode.IFrame;
                window.AutoLoad.Url = someUrl;
                window.Hidden = true;
                window.Collapsible = false;
                window.Layout = "FitLayout";
                window.Modal = true;
                window.CloseAction = CloseAction.Close;
                window.Render(this.Page);
                window.Show();
    and then I would like to do something in that Window and click button which will send
     List<int>
    to the page from this Window are created. Is there any possibility to do that?

    Thanks for advance:)
    Last edited by Daniil; Jun 21, 2012 at 9:43 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Please use AutoLoad Params.

    You can access these Params via Request of the child page.

Similar Threads

  1. Replies: 2
    Last Post: Oct 11, 2011, 1:15 PM
  2. Replies: 1
    Last Post: Mar 14, 2011, 4:20 PM
  3. Replies: 1
    Last Post: Mar 11, 2011, 10:07 PM
  4. Passing values from modal Window to parent
    By Rodriquez in forum 1.x Help
    Replies: 0
    Last Post: Oct 07, 2009, 10:21 AM
  5. Replies: 0
    Last Post: Apr 08, 2009, 7:36 PM

Tags for this Thread

Posting Permissions