When i click on print button, printout comes as printscreen , it is not printed the total content of Window. Please help us.
var win = new Ext.Window({
layout:'fit',
width:800,
height:600,
closable: true,
title:'Financial Details',
plain:true,
border:true,
minimizable : false,
maximizable : false,
autoScroll : true,
overflow:'auto',
items: financialDetailPanel,
buttons:[{
text: 'Print',
handler:function()
{
Window.print();
}
}]
});
win.show()