Note that you should only use that for display, or implement a "stage/commit" feature in your cells (as in http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellSampler) or you're breaking the edit/flush flow of the Editor framework (your cells directly updating the edited objects rather than waiting for the flush()). Not that it'll cause any issue (you'd have to try it), just "theoretical purity".
On Friday, February 14, 2014 9:11:56 PM UTC+1, Rogelio Flores wrote: > > On the other hand, if you are editing a list of proxies and using a > DataGrid, you want to take a look at > HasDataEditor, which allows you to edit a list of proxies by doing simply > this: > > HasDataEditor<Proxy> myListEditor = HasDataEditor.of(myDataGrid) > > > On Friday, February 14, 2014 6:07:46 AM UTC-5, Thomas Broyer wrote: >> >> You don't need the editor framework to feed a DataGrid. >> >> For other use-cases, workarounds include using an EditorDriver per value >> in the list, or having the list as a property in a wrapper object. >> >> On Friday, February 14, 2014 9:13:13 AM UTC+1, pierre laurent wrote: >>> >>> Hi There, >>> >>> Interface RequestFactoryEditorDriver<P,E extends >>> Editor<http://www.gwtproject.org/javadoc/latest/com/google/gwt/editor/client/Editor.html> >>> <? super P>> >>> Type Parameters:P - the type of Proxy being editedE - the type of >>> Editor that will edit the Record >>> >>> >>> Can P be a list of proxy ? >>> >>> I do have a list of proxy ( see below ) i want to fill within a >>> datagrid, >>> if not possible, is there any workaround ? >>> >>> interface HistoFichesDriver extends >>> RequestFactoryEditorDriver<List<HistoFichesProxy>, HistofichesEditor> { >>> } >>> >>> >>> Regards, >>> >>> Pierre >>> >> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
