Open or save the excel file attachment from the browser using ajax request in Ext.js
问题 I am generating the excel file in server side and writing it to the outpuststream with the following response headers. response.setContentType("application/vnd.ms-excel"); response.setHeader("Content-Disposition","attachment;filename="+fileName); In my client side : An ajax call to the servlet as shown : Ext.Ajax.request({ url: 'GenerateReport', method: 'GET', params: { 'start_date': sd.getValue(), 'end_date':ed.getValue() } }); Browser shows following Response Headers : My Issue : The Open