Popup window attach with a <aspx>

Normally, I use below the code to open a layout group screen and can goto that screen.


 window.location = ("order_query_bir.aspx");

I also have a popup window setting. < w1 > is a popup window in a screen.


  var dhxWins, w1, menu;

    dhxWins = new dhtmlXWindows();
   
   
    w1 = dhxWins.createWindow("w1", 20, 30, 800, 450);
    w1.setText("Parameter Tree");
    w1.setModal(true);

Now, I want to put (“order_query_bir.aspx”) content in a popup window < w1 >. I do not change new screen and only use a popup window to view in present screen layout.

It is work or not ? How about this method ?

Thanks for your help !

Hi
Use method attachURL()
docs.dhtmlx.com/doku.php?id=dhtm … _attachurl

Darya,

I know your code is ok on .
But I think it is only for a link or a website ?

I want to attach which is a < aspx > file.

Normally, I am to use below code to run.


   window.location = ("order_query_bir.aspx");

I want to ask your code can run this or other method ?

Thanks for your help !

Best Regards !

Ivan

You can attach via this method both local and remote files, and not only html.

Darya,

I can get the result.

Thanks for your help !

Ivan

Please, provide us completed demo - we will help you on exactly your sample
docs.dhtmlx.com/doku.php?id=othe … leted_demo