Hi,
This occurs since build smartgwt-2.3 revision.1541 and later in Development mode and normal browser
I have this message when I run a filter from FilterEditor :
------------------------------------------------------------------
DataSource:modele_filtre_ds:Operator iContains is not valid for field modele_nul. Continuing anyway.
com.smartgwt.client.core.JsObject$SGWT_WARN: 09:01:29.245:KPR4:WARN:DataSource:modele_filtre_ds:Operator iContains is not valid for field modele_nul. Continuing anyway.
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.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)
Indeed this field (modele_nul) is not present in the datasource,
but all the same it tries to filter and criteria
content in the fieldEditor are not taken into account.
before filterData and FilterEditor did not take into account the criteria not presented
in time fields datasource
My ListGrid :
selModGrid.setDataSource(instFil);
selModGrid.setShowAllRecords(true);
selModGrid.setWrapCells(true);
selModGrid.setFixedRecordHeights(false);
selModGrid.setAlternateRecordStyles(false);
selModGrid.setCanResizeFields(true);
selModGrid.setCanReorderFields(false);
selModGrid.setCanSort(true);
selModGrid.setModalEditing(true);
selModGrid.setCanFreezeFields(true);
selModGrid.setSelectionType(SelectionStyle.SINGLE);
selModGrid.setShowFilterEditor(true);
My DataSource type GWT-RPC DataSource.
Linux : Fedora 14
firefox : 3.6.13
Gwt : 2.1.1
As always any help is greatly appreciated.
Thanks.
This occurs since build smartgwt-2.3 revision.1541 and later in Development mode and normal browser
I have this message when I run a filter from FilterEditor :
------------------------------------------------------------------
DataSource:modele_filtre_ds:Operator iContains is not valid for field modele_nul. Continuing anyway.
com.smartgwt.client.core.JsObject$SGWT_WARN: 09:01:29.245:KPR4:WARN:DataSource:modele_filtre_ds:Operator iContains is not valid for field modele_nul. Continuing anyway.
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.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)
Indeed this field (modele_nul) is not present in the datasource,
but all the same it tries to filter and criteria
content in the fieldEditor are not taken into account.
before filterData and FilterEditor did not take into account the criteria not presented
in time fields datasource
My ListGrid :
selModGrid.setDataSource(instFil);
selModGrid.setShowAllRecords(true);
selModGrid.setWrapCells(true);
selModGrid.setFixedRecordHeights(false);
selModGrid.setAlternateRecordStyles(false);
selModGrid.setCanResizeFields(true);
selModGrid.setCanReorderFields(false);
selModGrid.setCanSort(true);
selModGrid.setModalEditing(true);
selModGrid.setCanFreezeFields(true);
selModGrid.setSelectionType(SelectionStyle.SINGLE);
selModGrid.setShowFilterEditor(true);
My DataSource type GWT-RPC DataSource.
Linux : Fedora 14
firefox : 3.6.13
Gwt : 2.1.1
As always any help is greatly appreciated.
Thanks.
Comment