-
22 Jun 2009 7:02 AM #1
How to load a birt report in EXtjs?
How to load a birt report in EXtjs?
hi,
I need to disply my birt report in a tabpanel
Can someone help me?
-
15 Sep 2009 4:07 PM #2
Did you find the solution?
Did you find the solution?
Hello Maren,
Did you find the solutions about display a birt report in a tabpanel?
Thanks in advance
-
30 Sep 2009 11:42 PM #3
hi,
you can use the extention [3.0] ux.ManagedIFrame 2.0 RC3
and this is my code js
i hope that i help youCode:function applywin(){ if(!win2){ var win2 = new Ext.Window({ applyTo:'hello-win', layout:'fit', width:800, height:500, modal:true, items: [new Ext.ux.ManagedIFrame.Panel( { xtype : 'mif', defaultSrc:"http://192.168.1.110:8080/ReportViewer/frameset?__report=report1.rptdesign", //url of your report loadMask: true } )] }); } win2.doLayout(); win2.show(); return win2; }


Reply With Quote