Re: How to avoid warning "Server class xyz could not be found in the web app, but was found on the system classpath"?

2017-03-10 Thread Rodolfo Raya
Add your custom library as a .jar file to war/WEB-INF/lib/ Adding a project source code as dependency works for compiling code but not for deploying the application. Regards, Rodolfo On Fri, Mar 10, 2017 at 2:47 PM Magnus wrote: > Update: > > gwt-servlet.jar exists in

Re: How to avoid warning "Server class xyz could not be found in the web app, but was found on the system classpath"?

2017-03-10 Thread Magnus
Update: gwt-servlet.jar exists in war/WEB-INF/lib/ -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to

Re: Reordering items in ListEditor

2017-03-10 Thread Gordan Krešić
Thomas, in your opinion, would this problem be worth a patch? What is the status of editor framework regarding GWT 3? If editors should be evolved further, I could propose a patch for this. I don't like exposing ListEditorWrapper in getList method signature, so that would call for a bit more

Re: Reordering items in ListEditor

2017-03-10 Thread Thomas Broyer
On Friday, March 10, 2017 at 10:13:44 AM UTC+1, Gordan Krešić wrote: > > I'm editing List of ValueProxies and I'm trying to implement reordering > of items (move to front, move to back, move up, move down the list). Since > ListEditors work by reflecting change in underlying List and List >

Re: GWT library to develop online editor

2017-03-10 Thread Predrag Pesic
This one has been built with GWT: http://www.eclipse.org/che/ sources are here: https://github.com/eclipse/che/ This is not an answer on your question but you can take a look how they did it. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Reordering items in ListEditor

2017-03-10 Thread Gordan Krešić
I'm editing List of ValueProxies and I'm trying to implement reordering of items (move to front, move to back, move up, move down the list). Since ListEditors work by reflecting change in underlying List and List interface does not support atomic "move" operation for item reordering, my only