Re: RequestFactoryEditorDriver Can P be a list of proxy ?

2014-02-14 Thread almagnit
For editing nested collections use ListEditor http://docs.sencha.com/gxt-guides/3/data/editors/Editors.html 2014-02-14 12:13 GMT+04:00 pierre laurent : > Hi There, > > Interface RequestFactoryEditorDriver Editor

Re: GWT Standalone application accessing 1GB files

2014-02-11 Thread almagnit
http://www.instantshift.com/2013/11/19/html5-features-with-gwt-elemental вторник, 11 февраля 2014 г., 16:54:30 UTC+4 пользователь Patricio Mosse написал: > > Hello! > I need to create a GWT application able to parse local files of 1GB > size... I don't need it to be available on internet but it

Re: SuperDev mode - 500 Error

2014-02-06 Thread almagnit
Stacktrace <http://pastebin.com/yrtzQek3> (as a side note: why are you using a JSP? this looks like plain HTML to me) on the off-chance =) четверг, 6 февраля 2014 г., 13:05:12 UTC+4 пользователь almagnit написал: > > What could cause this error? > After upgrading to gwt 2.6

SuperDev mode - 500 Error

2014-02-06 Thread almagnit
What could cause this error? After upgrading to gwt 2.6 and idea 13, at startup superdev mode get this error page: HTTP ERROR 500 Problem accessing /login;jsessionid=1wmax1chspzqv1kh8sfk5sk5tk. Reason: Server Error Caused by:Compile failed; see the compiler error output for details. at org.ap

One-To-Many and RequestFactory Proxy

2013-11-22 Thread almagnit
I have two entities: class A { @ ManyToOne @ Fetch (FetchMode.SELECT) @ JoinColumn (name = "b_id") B b; } class B { @ OneToMany (mappedBy = "b") @ Fetch (FetchMode.SELECT) List a; } interface AProxy { B getB (); setB (B b); } interface BProxy {

Re: Chained ListEditors

2013-11-12 Thread almagnit
ed > in-place, it's never assigned to the edited field. This is the same for all > editors with the exception of LeafValueEditors. > > On Monday, November 11, 2013 10:50:24 AM UTC+1, almagnit wrote: >> >> Flush results: http://pastebin.com/En8Ughnj >> Is obtaine

Re: Chained ListEditors

2013-11-11 Thread almagnit
Flush results: http://pastebin.com/En8Ughnj Is obtained that the object B was added to the object A, and object C still remains in the array editedProxies понедельник, 11 ноября 2013 г., 3:47:05 UTC+4 пользователь almagnit написал: > > I have multiple entities with a one-to-many relations

Chained ListEditors

2013-11-10 Thread almagnit
I have multiple entities with a one-to-many relations, such as: A { List b; } B { List c; } C { some fields } I'm trying to edit these entities by the editors AEditor extends Editor { BListEditor b... } BListEditor implements IsEditor>{ BItemEditor implements Editor{ CListEditor c... }

Re: ListEditor manipulations

2013-11-07 Thread almagnit
1. Used one call serice.context() per editor. 2. Call setAutoCommit(true) for ListStore 3. Profit )) -- 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 google

Re: ListEditor manipulations

2013-11-07 Thread almagnit
almagnit написал: > > Is it possible to add and edit added proxy to ListEditor. > I try to do the following: > [CODE] > add.addSelectHandler(new SelectEvent.SelectHandler() { > @Override > public void onSelect(SelectEvent event) { >

ListEditor manipulations

2013-11-07 Thread almagnit
Is it possible to add and edit added proxy to ListEditor. I try to do the following: [CODE] add.addSelectHandler(new SelectEvent.SelectHandler() { @Override public void onSelect(SelectEvent event) { ManagerProxy entity = context.create(ManagerProxy.class);