Hello I started getting this error after upgrading to 2.2 and not sure what might be causing it.
Here is an explanation of what I'm doing when I get the error:
I have a parent table with item records when I click on one I do criteria fetch data on child tables, the data is pulled then I get the error below.
My Versions:
SmartGWT 2.2 downloaded 5/24/2010
GWT 2.0.3
Error:
In particular the above error seems to happen on this line in ISC_Grids.js:
I also see these warnings in the SmartClient Developer Console but I'm not sure if they're causing any issues :
Here is an explanation of what I'm doing when I get the error:
I have a parent table with item records when I click on one I do criteria fetch data on child tables, the data is pulled then I get the error below.
My Versions:
SmartGWT 2.2 downloaded 5/24/2010
GWT 2.0.3
Error:
Code:
Uncaught exception escaped : com.google.gwt.core.client.JavaScriptException (TypeError): _1 is undefined fileName: http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_Grids.js lineNumber: 1127 stack: isc_ListGrid_getCurrentCheckboxField()@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_Grids.js:1127 isc_ListGrid__dataArrived(0,0)@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_Grids.js:1043 anonymous(0,0)@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_Core.js?isc_version=7.1.js:44 isc_ResultSet__doneDataArriving(0,0)@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_DataBinding.js:1291 isc_ResultSet_fetchRemoteDataReply([object Object],[object Array],[object Object])@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_DataBinding.js:1240 isc_c_Class_fireCallback([object Object],"dsResponse,data,dsRequest",[object Array],[object Object],(void 0))@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_Core.js?isc_version=7.1.js:282 isc_Class_fireCallback([object Object],"dsResponse,data,dsRequest",[object Array])@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_Core.js?isc_version=7.1.js:376 isc_DataSource__completeResponseProcessing([object Array],[object Object],[object Object])@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_DataBinding.js:527 isc_DataSource_processResponse("isc_ItemSKUOptionsListGridDS_0$6278",[object Object])@http://127.0.0.1:8888/eonedashboard/sc/modules/ISC_DataBinding.js:379 ("isc_ItemSKUOptionsListGridDS_0$6278",[object GWTJavaObject])@http://127.0.0.1:8888:236 @:0 ([object GWTJavaObject],17629185,[object XMLHttpRequest])@http://127.0.0.1:8888/eonedashboard/hosted.html?eonedashboard:56 ([object Event])@http://127.0.0.1:8888:10 ((function () {__gwt_makeJavaInvoke(1)(handler, 17629185, _this);}),[object XMLHttpRequest],[object Object])@http://127.0.0.1:8888:23 @:0 (null,65560,(function () {__gwt_makeJavaInvoke(1)(handler, 17629185, _this);}),[object XMLHttpRequest],[object Object])@http://127.0.0.1:8888/eonedashboard/hosted.html?eonedashboard:56 ([object Event])@http://127.0.0.1:8888:41 See the Development console log for details. Register a GWT.setUncaughtExceptionHandler(..) for custom uncaught exception handling.
Code:
,isc.A.getCurrentCheckboxField=function isc_ListGrid_getCurrentCheckboxField(){var _1=this.getFields(),_2=_1.find(this.fieldIdProperty,"$63n");return!_2?null:isc.isAn.Array(_2)?_2[0]:_2}
Code:
15:28:33.479:WARN:AutoObserver:Use addInterfaceProperties() to add methods to interface [Class AutoObserver] 15:28:33.795:WARN:Log:New Class ID: 'IAutoFitButton' collides with ID of existing Class object '[Class IAutoFitButton]'. Existing object will be replaced. 15:28:33.796:WARN:Log:New Class ID: 'HeaderImgButton' collides with ID of existing Class object '[Class HeaderImgButton]'. Existing object will be replaced.
Comment