Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid.startEditingNew() throws get: invalid index -1

    Hi Isomorphic,

    We have using a ListGrid and doing a simple add operation. Please find below our code and datasource. It is giving us a warning message which we want to get rid of. Please let me know what to do.

    Code:
    public void addRecord() {
    	Map<String, Object> defaultValues = new HashMap<String, Object>();
    	defaultValues.put(Display.STATUS_KEY, true);
    	materialStatusGrid.startEditingNew(defaultValues);
    }
    Code:
    <DataSource ID="materialUseDatasource" serverType="hibernate"  beanClassName="StandardMaterialUse" > 
         <fields>
        	 <field name="guid" type="text" hidden="true" primaryKey="true" /> 
    	     <field name="abbreviation" title="Abbrevation" type="text" > 
     	         <validators>  
    	             <validator type="serverCustom" >  
    	                    <serverObject lookupStyle="spring" bean="adminMaterialUseDMI"/>
    	                    <errorMessage>$Error</errorMessage>  
    	             </validator>  
    	        </validators>  
    	     </field>
    	     <field name="name" title="Name" type="text"  required="true"> 
       	        <validators>  
    	                <validator type="serverCustom" >  
    	                    <serverObject lookupStyle="spring" bean="adminMaterialUseDMI"/>
    	                    <errorMessage>$Error</errorMessage>  
    	                </validator>  
    	            </validators>  
    	     </field>
    	     <field name="statusIndicator" title="Active" type="boolean"/>
    	     <field name="createdBy" type="date" hidden="true" /> 
    	     <field name="createTimestamp"  hidden="true" /> 
    	     <field name="modifiedBy" type="date" hidden="true" /> 
    	     <field name="changeTimestamp"  hidden="true" /> 
         </fields> 
             <operationBindings>  
    	    <binding operationType="fetch" serverMethod="doCRUDOperation"> 
    	    <serverObject lookupStyle="spring" bean="adminMaterialUseDMI"/>
    		</binding> 
    		<binding operationType="add" serverMethod="doCRUDOperation"> 
    	   <serverObject lookupStyle="spring" bean="adminMaterialUseDMI"/>
    		</binding> 
    		<binding operationType="update" serverMethod="doCRUDOperation"> 
    	    <serverObject lookupStyle="spring" bean="adminMaterialUseDMI"/>
    		</binding> 
    		<binding operationType="remove" serverMethod="doCRUDOperation"> 
    	   <serverObject lookupStyle="spring" bean="adminMaterialUseDMI"/>
    		</binding> 
    	</operationBindings>
    </DataSource>
    warning message:
    Code:
    15:48:08.200 [ERROR] [xxx] 15:48:08.134:MUP5:WARN:ResultSet:isc_ResultSet_0 (created by: isc_ListGrid_1):get: invalid index -1
    com.smartgwt.client.core.JsObject$SGWT_WARN: 15:48:08.134:MUP5:WARN:ResultSet:isc_ResultSet_0 (created by: isc_ListGrid_1):get: invalid index -1
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeBoolean(ModuleSpace.java:184)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeBoolean(JavaScriptHost.java:35)
        at com.smartgwt.client.widgets.grid.ListGrid.canEditCell(ListGrid.java)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
        at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:214)
        at sun.reflect.GeneratedMethodAccessor92.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        at com.smartgwt.client.widgets.grid.ListGrid.getValueIcon(ListGrid.java)
        at sun.reflect.GeneratedMethodAccessor104.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
        at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:214)
        at sun.reflect.GeneratedMethodAccessor92.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:289)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:107)
        at com.smartgwt.client.widgets.grid.ListGrid.startEditingNew(ListGrid.java)
        at com.nike.pcs.pde.spc.client.view.AdminMaterialUseStatusView.addRecord(AdminMaterialUseStatusView.java:83)
        at com.nike.pcs.pde.spc.client.presenter.AdminPresenter$1.onClick(AdminPresenter.java:82)
        at com.smartgwt.client.widgets.events.ClickEvent.dispatch(ClickEvent.java:99)
        at com.smartgwt.client.widgets.events.ClickEvent.dispatch(ClickEvent.java:1)
        at com.google.gwt.event.shared.SimpleEventBus.doFire(SimpleEventBus.java:204)
        at com.google.gwt.event.shared.SimpleEventBus.fireEvent(SimpleEventBus.java:103)
        at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:101)
        at com.smartgwt.client.widgets.BaseWidget.fireEvent(BaseWidget.java:66)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
        at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
        at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
        at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
        at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
        at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:214)
        at sun.reflect.GeneratedMethodAccessor92.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:281)
        at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:531)
        at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:352)
        at java.lang.Thread.run(Thread.java:662)

    #2
    Just adding this code to a given grid sample does not produce this warning. It can be caused by various incorrect calls to APIs that might ultimately result in an incorrect call to getRecordIndex() - see if you can isolate the cause.

    Comment


      #3
      There is no server side code for this. We are using SmartGWT hibernate type to add a new row in the database. beanClass is an entity bean and hence nothing goes on in between. ListGrid.startEditingNew() is doing an add operation and we get this error.

      Let me know if you need more information

      Comment


        #4
        Not sure why you mention server code, getRecordIndex() is a client-side API. Regardless, what we need is a way to reproduce a spurious warning (if you think it's spurious; it may not be).

        Comment


          #5
          try making any boolean (checkboxes) in the listgrid to hidden true.

          have a small observation that the listgrid with any boolean (chekc boxes) fields other than the primary key, generates a warning message , when a new row is added.

          Comment


            #6
            Sorry, does not reproduce the problem.

            If you think there's an easy way to reproduce just add the small amount of code necessary to do so to a sample, and post the necessary changes. There is no point in simply pointing out the conditions which will reproduce it in some application you've written.

            Comment


              #7
              Thanks Knihar, I just set the field as hidden and the warning went away.

              Hi Isomorphic,

              Can you look into this?? If you need more information please let me know.


              ~Abhi

              Comment


                #8
                Thanks Abhijit, this is some small bug mostly in the sequence of the execution. adding the checkboxes the filed looks out for the icon image and set it to the record with some ID, when it does not find an id to the added new record to set the icon image it generates this warning.

                there's no harm with the warning , but when working with GWT, this warning is taken as an ERROR, which actually makes the listgrid's behavior unpredictable.

                Comment


                  #9
                  Hi knihar,

                  Can you please let me know what do you mean by "listgrid behavior unpredictable"??

                  Isomorphic,

                  Please let me know if you need more information to fix this.

                  Comment


                    #10
                    the warning by smartgwt is considered an ERROR by the GWT, throwing a error in javascript will not guarantee a structured behavior by the grid.

                    something like the grid might not edit on click, the drop down in the listgrid will not show up.

                    Comment


                      #11
                      Not sure if it's totally the same error as OP, but doing startEditingNew twice, gives me the following error.

                      What happens in my use case, is that startEditingNew adds a new line, and the line is put in edit mode (all editors are shown). When I click again, this error is shown.
                      But what's interesting is that the first line is not going out of edit mode when clicking the button to startEditingNew.
                      I can do this a few times,
                      then click on the first (and still only) line in the grid,
                      then go out of edit mode on that line via Escape,
                      then click the startEditingNew button again,
                      and all new lines since the first add are shown.

                      Maybe startEditingNew doesn't know the right index to add the new line at some place, since the first line is still 'being added' ?


                      Code:
                      com.google.gwt.core.client.JavaScriptException: (TypeError): this.addAt is not a function
                       fileName: http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js
                       lineNumber: 46
                       stack: ([object Object])@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:46
                      isc_ListGrid__saveLocally([object Object],(void 0))@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:2277
                      isc_ListGrid_saveEditedValues(0,0,[object Object],(void 0),"_0","programmatic",(void 0))@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:2274
                      isc_ListGrid_saveEdits("programmatic",(void 0))@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:2248
                      isc_ListGrid__saveAndStartEditing(1,0,"programmatic")@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:2201
                      isc_ListGrid__changeEditCell("programmatic",0,0,1,0)@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:1862
                      isc_ListGrid_startEditing(1,0,(void 0))@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:1853
                      isc_ListGrid_startEditingNew([object Object])@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Grids.js:2018
                      ([object GWTJavaObject])@http://127.0.0.1:8888:2827
                      @:0
                      ([object GWTJavaObject],1179847,[object GWTJavaObject])@http://127.0.0.1:8888/PROJECT/hosted.html?PROJECT:56
                      ([object Object],(void 0))@http://127.0.0.1:8888:1031
                      ((function () {var param = {};var event = __gwt_makeJavaInvoke(1)(null, 2883703, param);__gwt_makeJavaInvoke(1)(selfJ, 1179847, event);var ret = __gwt_makeJavaInvoke(0)(event, 1310722);return !ret;}),[object Object],[object Object])@http://127.0.0.1:8888:23
                      @:0
                      (null,65630,(function () {var param = {};var event = __gwt_makeJavaInvoke(1)(null, 2883703, param);__gwt_makeJavaInvoke(1)(selfJ, 1179847, event);var ret = __gwt_makeJavaInvoke(0)(event, 1310722);return !ret;}),[object Object],[object Object])@http://127.0.0.1:8888/PROJECT/hosted.html?PROJECT:56
                      ([object Object],(void 0))@http://127.0.0.1:8888:58
                      ([object Object],(void 0))@http://127.0.0.1:8888:13
                      isc_StatefulCanvas_handleActivate([object Object],(void 0))@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Foundation.js:321
                      isc_StatefulCanvas_handleClick([object Object],(void 0))@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Foundation.js:323
                      isc_c_EventHandler_bubbleEvent([object Object],"click")@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Core.js:1594
                      isc_c_EventHandler_handleClick([object Object])@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Core.js:1442
                      isc_c_EventHandler__handleMouseUp([object MouseEvent],(void 0))@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Core.js:1429
                      isc_c_EventHandler_handleMouseUp([object MouseEvent])@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Core.js:1420
                      isc_c_EventHandler_dispatch(isc_c_EventHandler_handleMouseUp,[object MouseEvent])@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Core.js:1657
                      anonymous([object MouseEvent])@http://127.0.0.1:8888/PROJECT/sc/modules/ISC_Core.js:63
                      
                      	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:237)
                      	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
                      	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
                      	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
                      	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
                      	at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                      	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:214)
                      	at sun.reflect.GeneratedMethodAccessor72.invoke(Unknown Source)
                      	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                      	at java.lang.reflect.Method.invoke(Unknown Source)
                      	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                      	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                      	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
                      	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:281)
                      	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:531)
                      	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:352)
                      	at java.lang.Thread.run(Unknown Source)

                      From console:
                      Code:
                      :WARN:Log:TypeError: this.addAt is not a function
                          unnamed({Obj}) @ PROJECT/sc/modules/ISC_Grids.js:46
                          ListGrid._saveLocally({Obj}, undef) @ PROJECT/sc/modules/ISC_Grids.js:2277
                          ListGrid.saveEditedValues(_1=>0,  _2=>3,  _3=>{Obj},  _4=>undef,  _5=>"_4",  _6=>"enter",  _7=>undef) @ PROJECT/sc/modules/ISC_Grids.js:2274
                          ListGrid.saveEdits(_1=>"enter",  _2=>undef) @ PROJECT/sc/modules/ISC_Grids.js:2248
                          ListGrid._saveAndHideEditor("enter") @ PROJECT/sc/modules/ISC_Grids.js:2195
                          ListGrid.cellEditEnd(_1=>"enter") @ PROJECT/sc/modules/ISC_Grids.js:2160
                          ListGrid.editorKeyPress(_1=>{Obj},  _2=>"Enter",  _3=>13) @ PROJECT/sc/modules/ISC_Grids.js:1026
                          unnamed({Obj}, "Enter", 13) @ PROJECT/sc/modules/ISC_Grids.js:980
                          FormItem._fireKeyPressHandlers({Obj}, {Obj}, "Enter", 13) @ PROJECT/sc/modules/ISC_Forms.js:1601
                          FormItem.handleKeyPress(_1=>{Obj},  _2=>{Obj}) @ PROJECT/sc/modules/ISC_Forms.js:1599
                          Class.invokeSuper(_1=>null,  _2=>"handleKeyPress") @ PROJECT/sc/modules/ISC_Core.js:307
                          Class.Super(_1=>"handleKeyPress",  _2=>{Obj}) @ PROJECT/sc/modules/ISC_Core.js:299
                          TextItem.handleKeyPress({Obj}, {Obj}) @ PROJECT/sc/modules/ISC_Forms.js:1924
                          [c]EventHandler.bubbleEvent(_1=>{Obj},  _2=>"keyPress",  _3=>{Obj}) @ PROJECT/sc/modules/ISC_Core.js:1594
                          [c]EventHandler.handleKeyPress(_1=>[object KeyboardEvent]) @ PROJECT/sc/modules/ISC_Core.js:1354
                          EventHandler._handleNativeKeyPress([object KeyboardEvent]) @ PROJECT/sc/modules/ISC_Core.js:1349
                          [c]EventHandler.dispatch(_1=>isc_c_EventHandler__handleNativeKeyPress,  _2=>[object KeyboardEvent]) @ PROJECT/sc/modules/ISC_Core.js:1657
                          anonymous([object KeyboardEvent]) @ PROJECT/sc/modules/ISC_Core.js:63
                          unnamed() @
                      SC_SNAPSHOT-2011-05-02

                      Comment


                        #12
                        The warning is simply logged and does not affect application functionality.

                        Levi, your error looks different. Can you put together a test case so we can reproduce it?

                        Comment


                          #13
                          Hi Isomorphic,

                          Any chance that you guys fix this issue??

                          Comment


                            #14
                            Originally posted by abhijith_p
                            Hi Isomorphic,

                            Any chance that you guys fix this issue??
                            This should now be fixed. Please try the next nightly build.

                            Comment

                            Working...
                            X