Hi All,
From my development module, need to export the data from the response to the respective files namely (.csx,.xls, .ooxml, .json, .pdf & .xml). From exporting feature handling bunch of data's and avoid client side processing.I'd liek to go along with server side.
From the above code it fetches the data but not downloading the CSV file from the browser. Is anything i need to add or missed any configuration in background.
Kindly provide your suggestions.
From my development module, need to export the data from the response to the respective files namely (.csx,.xls, .ooxml, .json, .pdf & .xml). From exporting feature handling bunch of data's and avoid client side processing.I'd liek to go along with server side.
Code:
DSRequest parseReq = new DSRequest(); parseReq.setExportAs("csv"); parseReq.setExportFilename("abc.csv"); parseReq.setExportResults(true); parseReq.setExportToClient(true); parseReq.setExportDisplay("download"); DSResponse response = parseReq.execute();
SmartGWT Version : Isomorphic SmartClient/SmartGWT Framework (v11.0p_2016-10-21/PowerEdition Deployment 2016-10-21)
Browser version: Chrome V59.0
Browser version: Chrome V59.0
Comment