Hi Isomorphic,
I'm getting this Developer Console exception in 5.1d (SNAPSHOT_v10.1d_2015-07-21) I'm not getting in 5.0p (v10.0p_2015-07-15).
It happens on button click but is most likely related to your request/RPC code.
Developer Console GC43 (removed server name in logs):
Developer Console FF26 (different, less details, no change to logs, especially nothing removed behind "https"):
My code:
Please also note the difference in the sent RPC requests in the attached screenshot. Therefore I think this might be related to the RPC code, not the button click.
This is pretty important for me, so if you need more details, let me know.
Best regards
Blama
I'm getting this Developer Console exception in 5.1d (SNAPSHOT_v10.1d_2015-07-21) I'm not getting in 5.0p (v10.0p_2015-07-15).
It happens on button click but is most likely related to your request/RPC code.
Developer Console GC43 (removed server name in logs):
Code:
11:55:58.991:MUP2:WARN:Log:com.google.gwt.core.client.JavaScriptException: (TypeError) : Cannot read property 'length' of undefined at RF(lms-0.js) at cd(lms-0.js) at Xc(lms-0.js) at SH(lms-0.js) at YH(lms-0.js) at eval(lms-0.js) at Pb(lms-0.js) at Sb(lms-0.js) at eval(lms-0.js) at MM.d.click(lms-0.js) at isc_StatefulCanvas_handleActivate(https://myserver.com/project/sc/modules/ISC_Foundation.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js) at isc_StatefulCanvas_handleClick(https://myserver.com/project/sc/modules/ISC_Foundation.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js) at isc_c_EventHandler_bubbleEvent(https://myserver.com/project/sc/modules/ISC_Core.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js) at isc_c_EventHandler_handleClick(https://myserver.com/project/sc/modules/ISC_Core.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js) at isc_c_EventHandler__handleMouseUp(https://myserver.com/project/sc/modules/ISC_Core.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js) at isc_c_EventHandler_handleMouseUp(https://myserver.com/project/sc/modules/ISC_Core.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js) at isc_c_EventHandler_dispatch(https://myserver.com/project/sc/modules/ISC_Core.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js) at eval(eval at isc__makeFunction (https://myserver.com/project/sc/modules/ISC_Core.js?isc_version=v10.1d_2015-07-21-SNAPSHOT.js)
Code:
11:59:35.670:MUP6:WARN:Log:com.google.gwt.core.client.JavaScriptException: (TypeError) : _4 is undefined at tF(https) at dd(https) at Yc(https) at xH(https) at DH(https) at qM/g<(https) at Pb(https) at Sb(https) at Rb/<(https) at click(https) at isc_StatefulCanvas_handleActivate(https) at isc_StatefulCanvas_handleClick(https) at isc_c_EventHandler_bubbleEvent(https) at isc_c_EventHandler_handleClick(https) at isc_c_EventHandler__handleMouseUp(https) at isc_c_EventHandler_handleMouseUp(https) at isc_c_EventHandler_dispatch(https) at anonymous(https) at anonymous()
Code:
reloadButton.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { // resultGrid.fetchData(combinedAC); FilterSectionStack.this.parent.fetchData(computeCriteria()); } }); //... //This is the fetchData called above: public void fetchData(AdvancedCriteria combinedAC) { RPCManager.startQueue(); funnelDS.fetchData(combinedAC, new DSCallback() { @Override public void execute(DSResponse dsResponse, Object data, DSRequest dsRequest) { if (dsResponse.getStatus() == DSResponse.STATUS_SUCCESS) funnelSectionStack.getFunnel().setData(dsResponse); } }, new DSRequest() { { setOperationId("countLeads"); } }); leadListReporting.fetchData(combinedAC); RPCManager.sendQueue(); }
This is pretty important for me, so if you need more details, let me know.
Best regards
Blama
Comment