Print Frame Chrome

  1. #1

    Print Frame Chrome

    I'm trying to print a pop up window using the following code :

    window.frames['cInitChecksWindow_IFrame'].focus();
    window.print();

    When I view the print page the html of parent page is also passed along with pop-up window in Chrome. I just need the html of pop-up. This works fine in IE all versions with the same code.

    (See the attachment for print images in IE and Chrome)

    Any help on how to print in extjs controls in Chrome will be helpful?
    Attached Thumbnails Click image for larger version. 

Name:	AuditHistory-IE.jpg 
Views:	280 
Size:	95.4 KB 
ID:	2488   Click image for larger version. 

Name:	AuditHistory-Chrome.jpg 
Views:	286 
Size:	95.8 KB 
ID:	2489  
    Last edited by mansi752; Mar 25, 2011 at 11:11 AM.
  2. #2
    Hello!

    Were you able to solve your problem? Using your code in IE , it prints the content of the parent instead of the child.

    var request = frontController + 'report/test?' 
    + "p_cod_opcao=873&p_cod_rep=873&p_cod_mod=INT&p_dta _inicial=12/12/2013&p_dta_final=12/12/2013&p_cod_dest=&p_cod_esp=&p_tipo_serv=F";
     
    //ext window with hidden iframe
    var win = new Ext.Window ({
    itemId: 'reportWindow',
    width: 800, 
    height: 600, 
    title: 'Relatorio',
    hidden:true,
    modal:true,
    html: '<iframe src="'+request+'" id="reportFrame" id="reportFrame" name="reportFrame" style="visibility:hidden;display:none" ></iframe>'
    });
    win.show();
     
    //print works on CHROME
    window.frames['reportFrame'].focus();
    window.print();
    Regards,
    Gustavo
    Last edited by geoffrey.mcgill; Dec 23, 2013 at 2:57 PM. Reason: Please use [CODE] tags
  3. #3
    Hi Gustavo,

    Please wrap any code samples in [CODE] tags. See item #3 in the following guidelines:

    http://forums.ext.net/showthread.php?10205-More-Information-Required
    Geoffrey McGill
    Founder

Similar Threads

  1. [CLOSED] Redirect from I frame
    By msutton761 in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Aug 15, 2012, 5:17 AM
  2. Loader and Frame
    By Birgit in forum 2.x Help
    Replies: 0
    Last Post: Apr 17, 2012, 12:17 PM
  3. Print all document
    By ginsar in forum 1.x Help
    Replies: 0
    Last Post: Aug 06, 2011, 11:25 AM
  4. Replies: 6
    Last Post: Feb 18, 2011, 2:12 PM
  5. Print of Items
    By mono in forum 1.x Help
    Replies: 1
    Last Post: Mar 10, 2009, 8:04 AM

Tags for this Thread

Posting Permissions