Re: GWT vs SmartGWT

2012-10-31 Thread tong123123
I found pure gwt developer guide, documentation and community forum is quite helpful, for GXT, I try to learn but there is no any tutorial like the stockwatch program, and no developer guide, the forum has poor response..., so I really do not know how to start with GXT although its UI is very

Re: GWT vs SmartGWT

2012-10-31 Thread saida dhanavath
I would recommend to go with GWT for your requirement, for WSDL just go with GWT-RPC and from RPC server/servlet connect to WSDL. point here is there has been a continuous improvement/enhancement on GWT since last 2 year. Best regrads, Saida. On Wed, Oct 31, 2012 at 12:07 PM, tong123123

Re: I Help help implementing ClickableSafeHtmlCell

2012-10-31 Thread Andrea Boscolo
If you want your cell to handle events you need to set those events as consumed by defining a constructor like public ClickableSafeHtmlCell(SafeHtmlRendererString renderer) { super(renderer, click); } But do not reinvent the wheel,

Re: GWT 2.5 Java 5 runtime(!) compatibility

2012-10-31 Thread Lars Ködderitzsch
Well, that's just corporate politics. Using new framework versions is can be decided by development department, whereas upgrading server infrastructure involves upper managment, operations department and the external hosting provider - so it's literally impossible. So we measly devs are trying

how to pass a String[] array in the declarative UI

2012-10-31 Thread Marius Grama
I have an own Button class which has a method void setDisplayPermissions(String[] displayPermissions) where it is specified for the button which are the required permissions needed for showing the button. In the example bellow i can set that the button should be shown only when the user has the

Re: GWT OpenLayers new website and showcase

2012-10-31 Thread Asimov
I just saw this ticket: Add transform(source, destination) to Geometry http://sourceforge.net/apps/trac/gwt-openlayers/ticket/19 That might be the sollution, what do you think? I will try tonight. Op dinsdag 30 oktober 2012 21:16:33 UTC+1 schreef Asimov het volgende: I am trying to read in

Re: RequestFactory: possible to load the whole object graph

2012-10-31 Thread Alex opn
Never thought about that : ) Btw: Here is the open issue about the possibility to load the whole object graph with RequestFactory: id 7082http://code.google.com/p/google-web-toolkit/issues/detail?id=7082 Am Dienstag, 30. Oktober 2012 21:58:45 UTC+1 schrieb Richard: Alternatively, just fetch

Re: why no getTabBar() in TabLayoutPanel?

2012-10-31 Thread Carl
Consider adding a handler: addBeforeSelectionHandler() From this you can Cancel() the user's selection. You'll also need to look into re-styling the tab you want cancel selection for so that there's a little feedback to users. On Wednesday, 31 October 2012 03:36:18 UTC, tong123123 wrote: I

GWT R PC ON SERVER START JAVA THREADS

2012-10-31 Thread Alp Yilancioglu
Hi, i have a problem, on Client side i make an RPC call to the server and at server side , in the called function i am trying to start independent java threads unfortunetly i am getting an exception, what should i do Exception: java.security.AccessControlException: access denied

Re: GWT and JBOSS

2012-10-31 Thread minhaj hasan
Hi Sunny, Can you plz give me steps to debug GWT client code in jboss. Thanks On Thursday, January 17, 2008 12:09:25 PM UTC+5:30, sunny wrote: How can I debug my server side GWT Application in eclipse using jboss application server. I am able to perform the same for the client side java

Still problems with com.google.gwt.core.client.GWTBridge

2012-10-31 Thread Moritz
Hi all, I get a NoClassDefFoundError for com.google.gwt.core.client.GWTBridge when I throw a RuntimeException on a server RPC. When I do not throw the RuntimeException and the RPC completes fine also no NoClassDefFoundError is thrown. As a workaround, I created an abstract

Re: GWT R PC ON SERVER START JAVA THREADS

2012-10-31 Thread Jens
You are using Google AppEngine so you must conform to their sandbox restrictions. Read the Thread passage in the docs: https://developers.google.com/appengine/docs/java/runtime?hl=en#The_Sandbox -- J. -- You received this message because you are subscribed to the Google Groups Google Web

GWT, dependent projects, GWT Compiling, and deploying

2012-10-31 Thread King_V
All, I'm not sure how exactly this is supposed to be accomplished, but... I have a GWT project that has no Entry Point. It is basically a number of classes, etc., that will be shared among different projects. A common library, if you will. And, I have a project that I'm actually working on,

Re: GWT, dependent projects, GWT Compiling, and deploying

2012-10-31 Thread Jens
I also have a app and a common project in Eclipse. Both are GWT enabled projects and app has common as a project dependency. Also the app.gwt.xml GWT module inherits common.gwt.xml. When you compile app using the GWT compiler it will compile everything it sees starting from the module you

Re: Still problems with com.google.gwt.core.client.GWTBridge

2012-10-31 Thread Pablo Nussembaum
Moritz, Until you find the actual problem you can use this jar. Regards, -- Bauna On 10/31/2012 09:08 AM, Moritz wrote: Hi all, I get a NoClassDefFoundError for com.google.gwt.core.client.GWTBridge when I throw a RuntimeException on a server RPC. When I do not throw the RuntimeException

Re: gwt unit test Canvas getCoordinateSpaceWidth()

2012-10-31 Thread Joseph Lust
Litmus, You should be able to use the unittesting with a browser other than the included FF3.5. Have you tried the solutions suggested in the Maven GWT Plugin docshttp://mojo.codehaus.org/gwt-maven-plugin/user-guide/testing.htmlunder Testing with 'real' Browsers? Sincerely, Joseph -- You

Re: GWT, dependent projects, GWT Compiling, and deploying

2012-10-31 Thread King_V
Jens, Thanks for your reply - my issue was related to what you suggested - it turns out that my Common project has no server classes, but a number of classes in the shared package, which are extended by classes in the main project's shared package, which those in turn are used by the main

Re: Cross field validation on client

2012-10-31 Thread Joseph Lust
Consider a framework like GWT Validationhttp://code.google.com/p/gwt-validation/, or roll your own (examplehttp://stackoverflow.com/questions/4098579/how-to-use-the-gwt-editor-framework-for-validationof Editor framework. Typically, it is up to you to validate your form fields. You can use

Re: Cross field validation on client

2012-10-31 Thread Jens
Haven't tried it yet but as GWT BeanValidation has implemented the JSR303 TCK tests you should be able to create custom validation annotations and a corresponding validator. That way you would end up having something like @ValidPassword(repeat = repeatPassword) //custom annotation that links

Re: CreateGWT is released

2012-10-31 Thread Joseph Lust
Thanks James! This is just what we're looking for to help with a current project where we need to move some old Flash assets over to canvas. Who needs flash any more? Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

compile to display java code line number

2012-10-31 Thread Luke
What parameters should I use to compile in order to display java code line number when exception ? Below is error showing on my firefox when exception uncaught exception: Class$S244: Exception caught: 2 exceptions caught: (TypeError) fileName:

Re: CreateGWT is released

2012-10-31 Thread Alain Ekambi
Believe it or not Flash still rocks the enterprise. I know it for sure :) 2012/10/31 Joseph Lust lifeofl...@gmail.com Thanks James! This is just what we're looking for to help with a current project where we need to move some old Flash assets over to canvas. Who needs flash any more?

Re: CreateGWT is released

2012-10-31 Thread Joseph Lust
At the risk of starting a flame war, I must counter that at my (very large) enterprise, we're divesting ourselves of Flash since target platforms cannot reuse our components (yeah, the iPad). Flash certainly still is popular, but given new canvas animation frameworks coming out every day

Re: CreateGWT is released

2012-10-31 Thread Alain Ekambi
No flame war at all :) The problem is to think that Flash can only be used for animations. There are uses cases where you cant go around Flash. Also you dont have to use Adobe IDEs to develop for Flash/Flex. Matter of fact you can use GWT to write Flash/Flex apps Now if you are targeting mobile

Re: how to pass a String[] array in the declarative UI

2012-10-31 Thread Benjamin Possolo
You are trying to add logic to your UiBinder XML file which is not what it is intended to do. View-specific logic goes in the java code. Just do it in the constructor or if you are caching your views (which is good for performance) in a dedicated method that can be called before the view is

Re: Destroy a widget

2012-10-31 Thread Benjamin Possolo
I can't really understand what you are asking or saying. If you want the widget to remain visible but to stop receiving events, do what Jens said: suppress the event handling logic in the event handler. If you want the widget to stop being visible and to stop receiving events, just do what I

Re: Cross field validation on client

2012-10-31 Thread Benjamin Possolo
I am not familiar with the GWT Validation framework. I'm not really sure why people use it considering vanilla GWT supports JSR303 (the documentation is pretty bad admittedly). Using plain GWT you would have a class-level validation annotation:

Re: Cross field validation on client

2012-10-31 Thread Joseph Lust
I'm not really sure why people use it considering vanilla GWT supports JSR303 (the documentation is pretty bad admittedly). Good point. After digging, found the brand new 2.5 validation docshttps://developers.google.com/web-toolkit/doc/latest/DevGuideValidation?hl=en. That should help.

Re: Still problems with com.google.gwt.core.client.GWTBridge

2012-10-31 Thread Thomas Broyer
I've reopened the issue; it looks like we indeed didn't fix it completely. On Wednesday, October 31, 2012 1:08:59 PM UTC+1, Moritz wrote: Hi all, I get a NoClassDefFoundError for com.google.gwt.core.client.GWTBridge when I throw a RuntimeException on a server RPC. When I do not throw the

Re: compile to display java code line number

2012-10-31 Thread Thad
If you run in devmode, you will see the Java line number. To see something more easily understood in production mode, add -style PRETTY to your program arguments. See https://developers.google.com/web-toolkit/doc/latest/RefCommandLineTools, specifically targets gwtc and devmode generated by

GWT RPC Serialization on web and app server

2012-10-31 Thread Anky
Hi All, I am facing a very strange scenario here. We have a GWT application that runs perfectly fine when deployed on weblogic app server. So far this was going pretty smooth for us. Now we are preparing our app for production release. For that, as per our company standard, we have installed a

[gwt-contrib] Re: Added new public static method to Window.Location: reloadParameterMap. (issue1859804)

2012-10-31 Thread skybrian
http://gwt-code-reviews.appspot.com/1859804/diff/1/user/src/com/google/gwt/user/client/Window.java File user/src/com/google/gwt/user/client/Window.java (right): http://gwt-code-reviews.appspot.com/1859804/diff/1/user/src/com/google/gwt/user/client/Window.java#newcode238