SmartClient Version: v8.3p_2013-03-20/Pro Deployment (built 2013-03-20)
IE 9
No messages logged on server
No response in Developer console
I'm trying to export the contents of a ListGrid to a PDF file.
Relevant code:
The grid variable references a populated ListGrid.
Two things happen when the button that launches this code is clicked:
1. The ListGrid is cleared of all data.
2. A new browser tab opens with a tiny text box containing the following message:
//isc_RPCResponseStart-->[{status:-1,data:"IOException on parsing style seet from a Reader; don't know the URI."}]//isc_RPCResponseEnd
Developer console shows this from RPCManager:
Any help you can provide would be appreciated.
IE 9
No messages logged on server
No response in Developer console
I'm trying to export the contents of a ListGrid to a PDF file.
Relevant code:
Code:
DSRequest dsRequestProperties = new DSRequest(); dsRequestProperties.setExportDisplay( ExportDisplay.DOWNLOAD ); dsRequestProperties.setDownloadResult( true ); dsRequestProperties.setDownloadToNewWindow( true ); dsRequestProperties.setSkinName( "EnterpriseBlue" ); dsRequestProperties.setExportFilename( "export" ); com.smartgwt.client.rpc.RPCManager.exportContent( grid, dsRequestProperties );
Two things happen when the button that launches this code is clicked:
1. The ListGrid is cleared of all data.
2. A new browser tab opens with a tiny text box containing the following message:
//isc_RPCResponseStart-->[{status:-1,data:"IOException on parsing style seet from a Reader; don't know the URI."}]//isc_RPCResponseEnd
Developer console shows this from RPCManager:
Code:
14:03:22.561:TMR0:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP 14:03:22.583:TMR0:INFO:RPCManager:sendQueue[2]: 1 RPCRequest(s); transport: hiddenFrame; target: http://localhost:8080/fcoe/fcoe/sc/IDACall/export?isc_rpc=1&isc_v=v8.3p_2013-03-20&isc_tnum=2 14:03:22.619:TMR0:INFO:RPCManager:Sending data via frame isc_HiddenFrame_1 to server at URL: http://localhost:8080/fcoe/fcoe/sc/IDACall/export?isc_rpc=1&isc_v=v8.3p_2013-03-20&isc_tnum=2
Comment