native Drag n Drop support

2014-02-13 Thread Malik Farhan
Is there native Drag n Drop support in GWT because I couldn't find any in showcase. If not then is there any Drag n drop support (drang n drop with multi-select between 2 trees) which is written by extending pure GWT. I found gwt-dnd but i dont know if its a jS wrapper or a pure GWT extension.

[ERROR] Line XX: Unexpected exception while processing element 'property-provider'... shell failed in doStartup method

2014-02-13 Thread Praveen K Nair
Hi, I am having trouble in starting my Web Application created using GWT Platform. I am using eclipse 4.3 with GWT 2.6.0 along with Maven. I have imported a project which is basically developed using GWT 2.4 and Maven automatically binds all libraries to 2.4 version when I do mvn clean

Re: I am getting ClassCastException only on production code but not on DevMode!

2014-02-13 Thread Thomas Broyer
Put a breakpoint on that throw line and look at the jsFunction. Alternatively, possibly look at the stacktrace of the 'e' exception. On Thursday, February 13, 2014 8:43:08 AM UTC+1, Mohammad Al Quraian wrote: Hi, I am developing multi-module project, each project is by its own a GWT

Re: native Drag n Drop support

2014-02-13 Thread Thomas Broyer
GWT supports the native drag and drop events in browsers where they are supportedhttp://www.gwtproject.org/javadoc/latest/com/google/gwt/event/dom/client/DragDropEventBase.html#isSupported(). This is rather low-level though. I think there are things in GwtQuery that enhance some GWT widgets

Re: [ERROR] Line XX: Unexpected exception while processing element 'property-provider'... shell failed in doStartup method

2014-02-13 Thread Jens
Your Sencha GXT library is most likely not compatible to GWT 2.6. I guess you need to update GXT if possible or go back to GWT 2.4 or 2.5.1 (whatever works). -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

Multi-module maven project with GWT entry point and war creation in separate module

2014-02-13 Thread Federico De Faveri
HI, It is possible to have a multi-module maven project where the main GWT application is in a module A and the war creation is done in module B? Any example or suggestion how to do that? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Multi-module maven project with GWT entry point and war creation in separate module

2014-02-13 Thread Juan Pablo Gardella
See https://github.com/tbroyer/gwt-maven-archetypes 2014-02-13 6:38 GMT-03:00 Federico De Faveri defav...@gmail.com: HI, It is possible to have a multi-module maven project where the main GWT application is in a module A and the war creation is done in module B? Any example or suggestion

GWT : java.lang.NoSuchFieldError: warningThreshold

2014-02-13 Thread Arshad Shaikh
Hi, I am facing 'Unexpected internal compiler error' while creating GWT Build. Tried changing the order of class paths of jars but didn't work. I have upgraded GWT from 3.1 to 4.0 and using Tomcat. Can someone please advise on this issue.

No-compromise AJAX

2014-02-13 Thread Edu Melo
Good morning, I've been using GWT with a superficial knowledge for some time, but just now I took out some time to deepened my knowledge, and I've been had a doubt that could not find the answer searching the web. So, please, someone could give me a good definition of what no-compromise AJAX

Re: No-compromise AJAX

2014-02-13 Thread Thomas Broyer
From http://www.gwtproject.org/makinggwtbetter.html no-compromise AJAXWe want great results, where great is defined by how much it benefits end users. Sometimes there are conflicts between what is easy for us developers and what benefits end users the most. When the two are in conflict, end

Re: GWT : java.lang.NoSuchFieldError: warningThreshold

2014-02-13 Thread Thomas Broyer
You must have a version of JDT (aka ECJ) earlier in the classpath, that conflicts with the one shipped within gwt-dev. It's very unlikely that this dependency is used for client-side code (in generators), so the best way is to make sure you only include client-side dependencies in your class

Re: Making an RPC call after a JSNI callback

2014-02-13 Thread RyanZA
You definitely don't want to be sending raw audio over the web to your server - it's huge. What you want to do is take that raw audio, convert it to an ogg or similar using something like https://github.com/muaz-khan/WebRTC-Experiment/tree/master/ffmpeg Then you'd take the ogg output and upload

Re: Making an RPC call after a JSNI callback

2014-02-13 Thread Steve
There's an exportWAV within Recorder.js which returns a blob (see below) which I could hold in a JavaScriptObject, would that be sufficient? however i still don't know how to send this object to the server and then allow other clients to retrieve the blob and play it. Are you suggesting that I

Re: Making an RPC call after a JSNI callback

2014-02-13 Thread Thomas Broyer
On Thursday, February 13, 2014 2:54:03 PM UTC+1, Steve wrote: There's an exportWAV within Recorder.js which returns a blob (see below) which I could hold in a JavaScriptObject, would that be sufficient? however i still don't know how to send this object to the server and then allow other

Re: GWT : java.lang.NoSuchFieldError: warningThreshold

2014-02-13 Thread Arshad Shaikh
Hi Thomas, Thanks for quick reply, I moved gwt-dev jar at the beginning of classpath and tried to build but getting below NPE. Kindly advise. Log: - [java] java.lang.NullPointerException [java] at

Don't know how to fill my datagrid from here.

2014-02-13 Thread pierre laurent
Hi there, Need advices regarding a problem adding values to a datagrid. Project is using hibernate, requestfactory and one to many relations. I've added a many to one relation in order to grab more datas but i am stuck dealing with the results. In the following code, log.info is showing me

widgets get disturbed on zoom +/-

2014-02-13 Thread aditi
After creating a screen in GWT, I tried browser's zoom+/-. Noticed that, all the widgets in the screen move here/there or get wrap from their location. The panels containing widgets like labels, listbox etc donot stay arranged as they are expected to be. Also, I see the same behaviour in

Re: Event Bubbling

2014-02-13 Thread Axel R
Hi Ed, I am looking for a simple exemple of 'event bubbling'...Just like the one you were talking about...an HTMLPanel that has various buttons and I want to intercept the clickEvent of each of them...Maybe you could post a little of code illustrating how you did it ? I have tried to find

Re: Event Bubbling

2014-02-13 Thread Ed
Hi Axel, We abandoned this approach in favor of inner html, where the server takes care of status back to the client. For processes that take a bit of time, the server responds to the request without closing the request so the user has an inkling of progress. Ed On Thu, Feb 13, 2014 at 11:25

Re: Event Bubbling

2014-02-13 Thread Thomas Broyer
I think there were examples in the slides for architecturing GWT apps for performance at I/O 2010 or 2012. You'll find a few examples in Cell implementations, and UiRenderer is based it too (easier than rolling your own, but it's useful to know what it all means) -- You received this message

Re: [ERROR] Line XX: Unexpected exception while processing element 'property-provider'... shell failed in doStartup method

2014-02-13 Thread Colin Alworth
Jens is dead on - several API changes from 2.4/2.5 to 2.6 make it difficult for a library to stradle that divide. We'll be shipping a GXT 3.1 beta Real Soon Now to enable users to switch to GWT 2.6. Breaking changes include: - Changing permutations (ie6 and opera are gone, ie10 was added,

Re: SuperDevMode not so super

2014-02-13 Thread Colin Alworth
There is a prototype project enabling Eclipse to debug the JS running in the browser with sourcemaps - check it out at http://github.com/sdbg/sdbg. On Thursday, November 15, 2012 8:46:26 AM UTC-8, Clint Gilbert wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If I could hook Eclipse

Re: gwt 2.6 SuperDevMode and injected css problem

2014-02-13 Thread Vassilis Virvilis
Ok. I tested it and I verified that if you use collapse-all-properties / DevMod_off is not working (client bundle css resources are not injected) on Firefox and in IE while it works in chrome. DevMod_on works on all 3 browsers I am testing against. If I comment out

SuperDevMode and -noserver (Tomcat) debugging

2014-02-13 Thread Thad Humphries
I thought I had this working, and I do, but only in one project. Now I'm trying to recreate the magic, and it's not working. I've an older project that I started running SuperDevMode from a console and DevMode from Eclipse. Since I wanted some features of Tomcat, I switched to running the app

Re: SuperDevMode and -noserver (Tomcat) debugging

2014-02-13 Thread Thad Humphries
Sorry, I meant to add that when I run-codeserver, I do see this anomaly: [INFO]Compiling 1 permutation [INFO] Compiling permutation 0... [INFO] Source Maps Enabled [INFO]Compile of permutations succeeded [INFO] Linking into

[gwt-contrib] Re: Not able to run GWTTestCase

2014-02-13 Thread Stephan Beutel
I also tried it with the Eclipse 3.8 and end up at the same point. I'm not able to run any GWTTestCase. Am Mittwoch, 12. Februar 2014 12:17:55 UTC+1 schrieb Stephan Beutel: Hello, I set up my Eclipse to contribute to GWT and worked through the Readme to set up an Eclipse workspace. All

Re: [gwt-contrib] GSOC and GWT

2014-02-13 Thread Julien Dramaix
I think it's a great idea but it's unfortunately too late for this year (deadline for submitting an organization is tomorrow) We should reopen this subject at the end of this year in order to start a list of idesw of development/contributions that can be done by students. I think also that open

[gwt-contrib] bug in permutations.js?

2014-02-13 Thread Stephen Haberman
Hey, We upgraded to GWT 2.6 last week, and our seeing weirdness with StyleInjector. Firefox ends up using the StyleInjectImplIE and errors out because $doc.createStyleSheet is IE only. FF gets the wrong deferred binding because its permutationId is undefined, when it should be 0. (We use

Re: [gwt-contrib] bug in permutations.js?

2014-02-13 Thread Brian Slesinsky
Yes it sounds like a bug. Want to add that to the issue tracker? I wonder why more people aren't seeing this? Does it only affect soft permutations? - Brian On Thu, Feb 13, 2014 at 11:41 AM, Stephen Haberman step...@exigencecorp.com wrote: Hey, We upgraded to GWT 2.6 last week, and our

Re: [gwt-contrib] Re: Not able to run GWTTestCase

2014-02-13 Thread Brian Slesinsky
I'm not an Eclipse user, but we did upgrade to Jetty 8.1 in 2.6 and its package changed. If you put the new version of Jetty in your classpath that will probably fix it. - Brian On Thu, Feb 13, 2014 at 6:44 AM, Stephan Beutel stephan.beu...@gmail.comwrote: I also tried it with the Eclipse

[gwt-contrib] Re: bug in permutations.js?

2014-02-13 Thread Colin Alworth
In CrossSiteIframeTemplate.js this is handled by assigning __MODULE_FUNC__.__softPermutationId to 0 to begin with, and then only change that value if : was present in the permutation string. I'm not seeing any other js files that init __softPermutationId to 0, and only permutations.js assigns

Re: [gwt-contrib] Re: bug in permutations.js?

2014-02-13 Thread Stephen Haberman
and only permutations.js assigns it to another value (but does so conditionally, so it never *assigns* undefined to __softPermutationId, it just leaves it not defined). But line 61: https://gwt.googlesource.com/gwt/+/master/dev/core/src/com/google/gwt/core/ext/linker/impl/permutations.js

Re: [gwt-contrib] bug in permutations.js?

2014-02-13 Thread Stephen Haberman
Want to add that to the issue tracker? Sure, I'll do that soon... I wonder why more people aren't seeing this? Does it only affect soft permutations? Removing collapse-all-properties does fix it. I'll do that for now and then work on submitting a patch. No idea how I would add a test for