Re: Gwt server side in maven

2010-02-04 Thread Ignat Alexeyenko
Hi again, So, how do you use maven? Which output it gives to you? Please post maven log. -- Kind regards, Ignat Alexeyenko On Thu, Feb 4, 2010 at 2:38 PM, יוסף נוגידאת wrote: > hello Ignat > > No i do not have any errors > > > On Thu, Feb 4, 2010 at 2:31 PM, Ignat Alexeyenko < > ignatalexeye.

Re: MVP with GWT 2.0/UiBinder could be simplified

2010-02-04 Thread mahjong
Thanks for the reply but some clarification seems to be needed here. First of all I am not against the current MVP "best practice" at all (I used it all the time with GWT 1.x). What my post concerned is really these: (1) most frameworks inspired by the Ray Ryan talk were pre-dated GWT 2.0 where UiB

Re: Source code availability to the GWT Compiler

2010-02-04 Thread Gal Dolber
Yes.. the GWT compiler needs to have available the java source code to work 2010/2/4 Micah > I currently have a GWT app that I'm looking to break into separate > modules. The build system is currently Maven2 and utilizing the gwt- > maven-plugin[1]. When reading over the documentation on how t

Re: upgrade gwt 1.5 to 1.6 help!!

2010-02-04 Thread Gal Dolber
I recommend you to go straight to GWT 2.0. Just update the SDK and find the deprecated's in your code. The biggest problem you can have is with the ImageBundle, now you have to use ClientBundle. Also I don't remember if the Listeners -> Handlers transition was before of after 1.6 ... Anyway... you

Re: Hiding server-side code from the client?

2010-02-04 Thread Gal Dolber
I am 99% sure that if you don't use the method on the client the GWT compiler will erase it. Regards 2010/2/4 Axel Rauschmayer > Use case: a data object has some methods that only the server needs. > > I'm currently using my own tool to create patched versions of a class > with server-only code.

NumberFormat problems(8 decimal places)

2010-02-04 Thread Tercio
Hi! I have a NumberFormat with 8 decimal places, that the code: NumberFormat format = NumberFormat.getFormat("#,##0."); System.out.println(format.format(1234.5678d)); When I run, it prints: "1,234.7852517" But should print: "1,234.5678" If I reduce t

verttical scroll panel jumping around in 2.0

2010-02-04 Thread Calin M
Hi, I have an application with a vertical split panel. Inside the left pane I have a tree and its leafs are links. Sometimes the links are too long and a horizontal scrollbar is created. Since I upgraded to 2.0, whenever I click on a link, the horizontal scrollbar repositions itself such that the

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-04 Thread Bogdan Maryniuck
On Thu, Feb 4, 2010 at 6:25 PM, mariyan nenchev wrote: > Yes it has very fancy widgets but the integration with the server side is > killing unless you decide to purchase pro/ee, which is why it is done that > way, to show the devs how rich library it is and when they began to use it > they unders

Re: using ClientBundle for a themeable image set

2010-02-04 Thread Bob
Nobody? :-( On Feb 3, 10:40 am, Bob wrote: > Hi, > > I have a set of static objects which are retrieved from the server and > rendered in a custom widget on the client.  Each of these objects has > an image associated with it.  I want these images to be themeable, > such that the entire set of im

Re: GWT 2.0.1 out but Eclipse says "There is nothing to update"

2010-02-04 Thread Sky
Go to Help -> Install new software... then choose "Google Plugin - http://dl.google.com/eclipse/plugin/3.5"; from the drop down or else add it if it isn't already there. It should show both the App Engine and GWT under SDKs. Check SDKs and click Next. I had the same thing as you, but this way wor

Re: BUG(chrome): TextBox inside FocusPanel can't be clicked

2010-02-04 Thread Sky
Fixed! GWT 2.0.1 solved the problem. Good job GWT development team! Very much appreciated! On Jan 19, 9:53 pm, Sky wrote: > Hi Thomas, thanks for your reply! > > I copied/pasted the xml you gave into my gwt.xml file and the DevMode > was unable to find it. Here is the error: > > "[ERROR] [myproje

Re: Blur event on FocusPanel is triggered immediately following MouseDown event

2010-02-04 Thread Sky
FIXED! GWT 2.0.1 fixed all of these issues!!! I am so incredibly happy! Well done, GWT team! Pat on the back! Good job! I hope you (GWT development team) feel appreciated for your hard work! cheers! On Feb 1, 7:04 pm, Sky wrote: > Wow! Now another FocusPanel's MouseDown event doesn't even fire!

GWT 2.0.1 out but Eclipse says "There is nothing to update"

2010-02-04 Thread Jaroslav Záruba
I"ve just noticed GWT 2.0.1 has been released, so I wanted to check how does "my" bug do in the new release, but Eclipse says there's nothing to update from the update site. When I browse available software from Google within "Available Software" the new version is actually listed (also when I che

Re: Maven users survey

2010-02-04 Thread Andrew Hughes
Any improvements in GWT-Maven support from Google would be excellent! Google are 'maven friendly' :) THANKS KEITH AND OTHERS! I can't speak highly enough of Maven. It's an instant injection of mature engineering practices for projects and companies alike. It's a shame it has becoming increasingly

Re: GWT 2 - Different behavior when using DevMode/draftCompile then in Production mode

2010-02-04 Thread Steve Lancey
Just one more piece of information: After removing the final and assigning the variable to itself we got the same behavior in DevMode and Production Mode String uniqueId = DOM.createUniqueId(); uniqueId = uniqueId; It seems that the problem lies with the optimizer. Anyone else faced similar issu

Re: Deprecation warning

2010-02-04 Thread cretz
Nope, even @Deprecated isn't an acceptable workaround :-( On Feb 4, 4:20 pm, cretz wrote: > I have a class w/ a couple of static JSNI methods referencing itself. > I deprecated the class, but when the GWT compiler comes across my > static JSNI method in the deprecated class, it shoots out a warni

Deprecation warning

2010-02-04 Thread cretz
I have a class w/ a couple of static JSNI methods referencing itself. I deprecated the class, but when the GWT compiler comes across my static JSNI method in the deprecated class, it shoots out a warning saying I am referencing a deprecated class like so: [WARN] Warnings in 'file:/C:/dir/src

Exceptions in Event Handlers(inner classes) are not shown by Dev Mode Panel in Eclipse!

2010-02-04 Thread J-Pro
Good afternoon, dear GWT group members! I've noticed that if I create an event handler, for example ButtonItem btnSubmit = new ButtonItem(); btnSubmit.addClickHandler(new com.smartgwt.client.widgets.form.fields.events.ClickHandler() { @Override public void onClick(com.smartgwt.client.widg

Testing Methodologies Using Google Web Toolkit

2010-02-04 Thread Sesha
Hi, Am new to GWT/MVP and was going through the tutorials. I was trying to get hold of the source code illustrated in the tutorial at http://code.google.com/webtoolkit/articles/testing_methodologies_using_gwt.html by Sumit Chandel. Where can I get hold of the source code for the same? Thanks, Se

Hiding server-side code from the client?

2010-02-04 Thread Axel Rauschmayer
Use case: a data object has some methods that only the server needs. I'm currently using my own tool to create patched versions of a class with server-only code. It removes methods annotated with @GwtIgnore and places the result so that it overrides the server version whenever GWT is involved. Is

Source code availability to the GWT Compiler

2010-02-04 Thread Micah
I currently have a GWT app that I'm looking to break into separate modules. The build system is currently Maven2 and utilizing the gwt- maven-plugin[1]. When reading over the documentation on how to do this, I wonder what exactly are the requirements around the source code for a module being avai

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-04 Thread ckendrick
@Jeff, ahhughes: as far as the built-in GWT widgets, they are well- designed and fine for simple things, but if your requirement is to have a grid that supports full-row inline editing, grouping, filtering, frozen columns, paging through large datasets, resizable/ reorderable headers with persisten

Re: "fixing" javascript method names

2010-02-04 Thread Ryan Heaton
Thanks for your reply. But I'm having trouble understanding your code. The "publishGetStuff" method refers to $entry. What is that? The "staticGetStuff" method refers to a variable "service". Where is that variable stored? It looks like when users call $wnd.getStuff then they have to pass in a f

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Ed
Thanks for the idea Diego This is nice for Hello World applications, but not for Enterprise like apps with all kind of decouples buses/queues and security restrictions Thanks anyway :) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" grou

JSONParser bug ?

2010-02-04 Thread Costa
I have attempted the following code snippet: String data = "new $wnd.Date(2010,0,28,17,8,48,0)"; JSONValue value = JSONParser.parse(data); To my dismay it returns a JSONNumber !! Now I looked in the source code (JSONParser.java: parse, evaluate & createObject) and I created the following test pr

Re: Maven users survey

2010-02-04 Thread Keith Platfoot
Yes, I've been meaning to reply back to this thread. Thanks for reminding me, Brian! :-) Our plans for the next release of the Google Plugin for Eclipse (1.3) include 4 changes designed to make integration with Maven and J2EE projects easier: 1. The WAR directory can now be configured to be *

Cannot get code splitting to work

2010-02-04 Thread Jonathan
If I create a basic GWT 2.0 project, and add some basic code splitting, it works perfectly fine. But our main application is pretty massive and complex. I cannot get it to split ANY code whatsoever - even the most basic test. I generally confirm this by looking at the soyc compile report but it'

Cannot get code splitting to work

2010-02-04 Thread Jonathan
If I create a basic GWT 2.0 project, and add some basic code splitting, it works perfectly fine. But our main application is pretty massive and complex. I cannot get it to split ANY code whatsoever - even the most basic test. I generally confirm this by looking at the soyc compile report but it'

Re: IE bug in vertical sizing of elements

2010-02-04 Thread Thad
Yay! Kudos Tom. Thank you. Changing DOCTYPE to http://www.w3.org/ TR/html4/strict.dtd"> clears up this height problem. I am now looking at three devmode browser windows--Firefox 3.5 in Linux, IE7 in WinXP, and Safari 4 on MacOS 10.5--and they all look the same. Moreover (and the real acid tes

Re: GWT UIBinder - unrecognized text in g:VerticalPanel

2010-02-04 Thread bkbonner
Hey, question for you...How do reference the DialogBox in the java code? I was under the impression that it was only possible to do the bind the java code to an entity with the same name. Maybe I'm missing something here. Is the DialogBox an element of a Composite or is it a separate definition

GWT 2 - Different behavior when using DevMode/draftCompile then in Production mode

2010-02-04 Thread Steve Lancey
Hi, We are experiencing a strange problem: We have a piece of code in our application that is generating a html string which we are displaying at one point in the application flow. With GWT 1.5.x - GWT 1.7.x this worked without any issues. Moving to GWT 2 this functionality is broken: As a matter

Re: Maven users survey

2010-02-04 Thread bkbonner
And hopefully (Nir mentioned this prior), there will be a way to exclude a specific set of classes via some 'ant matcher' from the module. We keep the path the same and it looks like GWT looks at both directories and throws errors which I don't believe affect execution, but are confusing: Val

Re: Prevent class conversion when compiling modules

2010-02-04 Thread getaceres
You are right, I didn't realize about the polymorphism problem since you can always get an Object or interface as parameter and then execute any of its methods, so you don't know what class you might get. I guess a simplification of the problem would be to mark as invalid only the field and its get

Re: RootPanel.get() problems

2010-02-04 Thread Thomas Broyer
On Feb 4, 3:27 pm, "Juan M.M.M." wrote: > hi! > > Thx for the reply. Is this Issue resolved in the new version of GWT > (GWT-2.0.1) ? The issue has been closed as "AsDesigned" so it won't change: "it's not a bug, it's a feature" -- You received this message because you are subscribed to the G

Re: IE bug in vertical sizing of elements

2010-02-04 Thread Thomas Broyer
On Feb 4, 5:51 pm, Thad wrote: > Thanks, Tom.  It seems like a bug in IE: > > 1) I'm already using > > for my page.  Should I be using a different one? Yes, definitely! http://hsivonen.iki.fi/doctype/test-quirks.php?doctype=%3C!DOCTYPE+HTML+PUBLIC+%22-//W3C//DTD+HTML+4.01+Transitional//EN%22%3

Re: Maven users survey

2010-02-04 Thread bkbonner
Keith, are you going to give the folks who replied to your message some sort of thoughts on what you're going to implement and hopefully let us try it before you end up releasing the next release of the plugin? Brian On Jan 13, 11:35 am, Keith Platfoot wrote: > Hi folks, > > For the next release

Re: "fixing" javascript method names

2010-02-04 Thread Thomas Broyer
On Feb 4, 5:54 pm, Ryan Heaton wrote: > Hi. > > Here's my problem. I've got a GWT client-side service method that > makes a remote call to a server. Since the result of the remote call > is returned asynchronously, the service method takes a "callback" as a > parameter. It's basically just an in

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Diego Lovison
why not? ;) On 4 fev, 15:23, Marcos Alcantara wrote: > Ok. > > About the @GwtTransient, in my case, I´m only using model classes > defined within the GWT module. Although I love what Gilead has done > for us, I think if it would be possible to eliminate the performance > overhead and let GWT ser

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-04 Thread siberian
We don't want nested grids. We don't want nested html. We want a nested composite panel with arbitrary widgets in them. Neither framework does well there, hence the custom solution. Anyhow, we'll be looking on our next project and seeing how we feel about it. Extended GXT was very simple for us on

file.properties web mode

2010-02-04 Thread asle
Hello: I have a problem when use with gwt 1.6 web mode, because not found file.properties. When we used gwt 1.4 with tomcat, we have the file.properties in the folowing directory (in workspace eclipse): project.tomcat.webapps.confFiles. But i do not know in gwt 1.6 where to put for what in web mod

"fixing" javascript method names

2010-02-04 Thread Ryan Heaton
Hi. Here's my problem. I've got a GWT client-side service method that makes a remote call to a server. Since the result of the remote call is returned asynchronously, the service method takes a "callback" as a parameter. It's basically just an interface with two methods "onSuccess" and "onFailure"

Re: Embedded jetty

2010-02-04 Thread vachi
assume that you want to define jdbc datasource using jndi, here is what I did. 1 add jetty-naming and jetty-plus jars to y classpath. also put jndi.properties in your classpath. 2 implement a helper class, which implements jetty's ServletContainerLauncher interface. 3 put jetty-env.xml in your WEB-

Override default CSS

2010-02-04 Thread Mirandus
Hello! Whats the best way to override the default CSS-Style for the DecoratedStackPanel? In my case, i want to set the padding of the style class "gwt- StackPanelContent" to zero - but i have no idea how to access the wrapper-element and override the style. If i put .gwt-StackPanelContent { p

How suitable is GWT for developing apps for embedded devices like gateway

2010-02-04 Thread vivek
Hi, I am planing to build apps for gateway. The gateway has 32 MB of flash memory and simple processor. So i would like to know how suitable is GWT for developing embedded apps. -vivek -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To p

upgrade gwt 1.5 to 1.6 help!!

2010-02-04 Thread asle
Hello: We have a problem to upgrade gwt , and folowing the steps in http://code.google.com/intl/es/webtoolkit/doc/1.6/ReleaseNotes_1_6.html#Upgrading . The first step is ok, but de second step: Switch from GWTShell to HostedMode i am not understand how i do, because i do not know where directory

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Marcos Alcantara
Ok. About the @GwtTransient, in my case, I´m only using model classes defined within the GWT module. Although I love what Gilead has done for us, I think if it would be possible to eliminate the performance overhead and let GWT serialize my JPA annotated classes directly. Would it? =) thanks M

Re: Running several projects in Development Mode in Eclipse fails.

2010-02-04 Thread Miguel Méndez
Could you file a bug in the GWT issue trackerfor this? As a work around, you can add -codeServerPort auto to the launch configuration's program arguments. This should avoid the second problem that you were running into. On Wed, Feb 3, 2010

Re: IE bug in vertical sizing of elements

2010-02-04 Thread Thad
Thanks, Tom. It seems like a bug in IE: 1) I'm already using for my page. Should I be using a different one? 2) From Firebug, the Firefox style for the is "width: 128px; height: 1px; background-color: rgb(123, 123, 123); position: absolute; left: 5px; top: 13px;" >From the IE Developer Toolba

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Open eSignForms
Yeah, this was a big problem for us since it meant creating lots of DTOs and server-side routines that generated them from its existing objects and could consume them for updates. I don't know the internals of GWT compiler, but it sure would be nice if fields and methods and constructors could be

GlassPanel in IE6 -- color changes when scrolling

2010-02-04 Thread Skyfort
Hello internet! I am using a GlassPanel to black out the background a bit when I open a modal. In IE6, which of course uses the iframe shim, the color of the GlassPanel is going from a dark grey to a light grey after I scroll (sort of whiting out the background instead). I can provide code if nec

Re: Gwt server side and maven

2010-02-04 Thread Ignat Alexeyenko
I've send a link in previous email. Here is SVN root of the project: https://simpleworklog.svn.sourceforge.net/svnroot/simpleworklog You can checkout it using SVN client. If you have command line client, type the following command: svn checkout https://simpleworklog.svn.sourceforge.net/svnroot/si

JUnitShell - specify HTTP port

2010-02-04 Thread djd
Hi guys, Is there a way to specify the port when starting a GwtTestCase? By default, this is set to 0 (random port). I would like to always start on a specified port, and "-port 15000" didn't have any effect - although I think this "port" has nothing in common with HTTP client (but rather Jetty's

Re: Help on gwt app initial download...

2010-02-04 Thread Abdullah Shaikh
GWT.runAsync() is the way to go.. I was able to bring down the initial size a lot less compared to not using code splitting. All the presenters/views not required initially, and required on an event, I have put all of them in code splitting. HTH - Abdullah On Thu, Feb 4, 2010 at 5:15 AM, golfdu

Re: Remove element on host page

2010-02-04 Thread obesga
Thanks ! On Feb 4, 1:35 pm, Ian Bambury wrote: > Get the body element and set the innerhtml to "" > > Ian > > http://examples.roughian.com > > On 4 February 2010 12:26, obesga wrote: > > > Hello > > > I have a div element into the host page, just a 'please wait' advice > > while the gwt code loa

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-04 Thread Tercio
@mariyan nenchev, I used SmartGWT free version for some time and it was a pain to integrate with EJB(To be honest I gave up). I considered the paid version, but it's too expensive. You receive a lot of "useless" features. You can't choose the ones you need, you must buy the whole package. On Feb 3

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-04 Thread Tercio
@mariyan nenchev, my bad, I forgot to mention that it's a EE feature. But the UI is available in the free version. GXT API is much like the AWT API. On Feb 3, 2:21 pm, Jonathan wrote: > I'm also using GXT on a very, very large project.  My experience has > been pretty positive.  I've been worki

Re: Prevent class conversion when compiling modules

2010-02-04 Thread Chris Lercher
GWT doesn't allow reflection, but it does allow polymorphism. Let's assume your client uses interface IC which is implemented by C1 and C2. Now C1.x() is marked as invalid, but C2.x() isn't. Now your client also can't use IC.x() anymore. It better not be toString()... This is just one example for

Re: Help on gwt app initial download...

2010-02-04 Thread dolcra...@gmail.com
GWT.runAsync(). On Feb 3, 6:45 pm, golfdude wrote: > My app ( obfuscated ) is at 850kb and my users are complaining on > initial download time as in beta mode I tend to put regular releases. > My users are all in dialup ( 56 kb ) kind of connections. I have been > searching this group and searchi

Re: Upgrade problem 1.7 --> 2.0

2010-02-04 Thread doopa
On Feb 4, 2:12 am, iaio81 wrote: > Hi all, > because of the slowness of GWT 1.7's hosted mode, I was trying > upgrading GWT to 2.0 but after having done it I have problems running > my projects created with 1.7. What I've to change? I had problems with Sun JDK as well. However it would be more

Re: RootPanel.get() problems

2010-02-04 Thread Juan M.M.M.
hi! Thx for the reply. Is this Issue resolved in the new version of GWT (GWT-2.0.1) ? Thanks for the answers! Bye! On Feb 3, 5:38 pm, Thomas Broyer wrote: > On Feb 2, 6:00 pm, "Juan M.M.M." wrote: > > > > > hi! > > > I'm becoming exasperated because this class sometimes works fine and > > some

Re: Prevent class conversion when compiling modules

2010-02-04 Thread dolcra...@gmail.com
Well as a work around to see if/where gwtc is needing class A you could create a "dummy" class using the super directive in your module gwt that is serializable (and empty). On Feb 4, 8:42 am, getaceres wrote: > I chose the wrong letter to describe my algorithm. Going to my > example: > > Class A

Re: How to close browser window with event

2010-02-04 Thread mariyan nenchev
Hi, this not working for me. Here is what i do: Window.alert("You have been logged out"); BrowserUtils.close(); BrowserUtils: public class BrowserUtils { private BrowserUtils() { } native public static void close()/*-{ $wnd.close();}-*/; } -- You received th

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-04 Thread Ben
I've been using GXT for a while, and as previous posts have mentioned, the amount of documentation is pretty sparse. I've been able to overcome that by relying on their extensive set of demo apps, and by reading through the API's source code. If you're comfortable reading someone else's Java code,

Re: MVP with GWT 2.0/UiBinder could be simplified

2010-02-04 Thread FKereki
Hi! Personally, I do not use the "HasX" methods. The way I use MVP +UIBinder to create SomeForm is: * SomeFormView creates its widgets through UiBinder, which are in SomeFormView.ui.xml. SomeFormView implements SomeFormDisplay (see below) which is the interface that SomeFormPresenter expects.

How to integrate gwt with flirck and youtube

2010-02-04 Thread blopes
Hi people, Can you provide an example of integration with flirck and youtube ? OR there is an others options to deal with photos and videos, using any others existing systems ? Thanks ! Bruno -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" g

Re: Prevent class conversion when compiling modules

2010-02-04 Thread getaceres
I chose the wrong letter to describe my algorithm. Going to my example: Class A not serializable. Class B serializable but with a B.field of type A marked as transient. In this case, only B has to be taken into account, which is the only class that uses A. The compiler would ignore completely A a

Re: Compiling in subdirectory

2010-02-04 Thread cromoteca
Hi, thank you again Thomas. A solution might be to compile into /war/dir/ modulename and to use devmode into /war/modulename, pointing to a different path according to the server I'm running on. I'll try that approach. On 4 Feb, 11:30, Thomas Broyer wrote: > On Feb 1, 9:13 am, cromoteca wrote:

Re: Charts in Visualization API -- pushing data

2010-02-04 Thread Sean
http://code.google.com/p/rocket-gwt/wiki/Comet Comet will allow you to push data from the Server to the Client. I've never used it personally, but it gets suggested on these boards all the time. On Feb 3, 5:47 pm, John Ivens wrote: > Suppose that I would want to use the Google Visualization API

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread getaceres
We were discussing that annotation in this thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/71e0e7ca92425ad/0f1d4d5cf52875cb?lnk=gst&q...@gwttransient+#0f1d4d5cf52875cb The annotation only works if all your classes with all the relation classes belongs to the GWT mod

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Christian Goudreau
Forget what I said about the documentation. But still, I never used Annotation, I'll have to take a deeper look into this. Christian On Thu, Feb 4, 2010 at 8:12 AM, Christian Goudreau < goudreau.christ...@gmail.com> wrote: > Huh, is that documented !? I don't understand why we didn't heard about

Re: Embedded jetty

2010-02-04 Thread gcstang
You can setup JNDI if this is what you mean. Create a file in your war/WEB-INF as jetty-web.xml (MySQL example) http://jetty.mortbay.org/configure.dtd";> java:comp/env/jdbc/database jdbc:mysql:

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Christian Goudreau
Huh, is that documented !? I don't understand why we didn't heard about this before. Christian On Thu, Feb 4, 2010 at 8:05 AM, Marcos Alcantara wrote: > Hi Diego, > > Are you sure of this? > > It would be great to stop using a 3rd party lib to process all DTO´s. > > Thanks! > > Marcos Alcantara

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread philippe
GwtTransient means that this attribute isn't serialized. So if your List is not null you don't serialized this. On 4 fév, 14:05, Marcos Alcantara wrote: > Hi Diego, > > Are you sure of this? > > It would be great to stop using a 3rd party lib to process all DTO´s. > > Thanks! > > Marcos Alcanta

Re: forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Marcos Alcantara
Hi Diego, Are you sure of this? It would be great to stop using a 3rd party lib to process all DTO´s. Thanks! Marcos Alcantara On 4 fev, 08:07, Diego Lovison wrote: > In GWT 2.0.x you can use the annotations of the JPA and JDO without > problems and without using any additional library. Your

Re: GoogleMaps gwt-maps Tiles don't align or fill the Widget.

2010-02-04 Thread Andrew Winter
I had the same problem. This timer suggestion fixed it for me (though I still wonder if it's raceable): http://groups.google.com/group/google-web-toolkit/browse_thread/thread/3cc67a8e3b4b76a7/5b3c0b9f95875957?lnk=gst&q=layouts+maps#5b3c0b9f95875957 On Feb 4, 2:03 am, ahhughes wrote: > Hi All, >

Re: Gwt server side in maven

2010-02-04 Thread יוסף נוגידאת
hello Ignat No i do not have any errors On Thu, Feb 4, 2010 at 2:31 PM, Ignat Alexeyenko wrote: > Hi > > Do you have any errors during maven work? > > -- > Kind regards, > Ignat Alexeyenko. > > On Thu, Feb 4, 2010 at 11:13 AM, joe7935 wrote: > >> Hello all, >> I try to build a project in maven

Re: Remove element on host page

2010-02-04 Thread Ian Bambury
Get the body element and set the innerhtml to "" Ian http://examples.roughian.com On 4 February 2010 12:26, obesga wrote: > Hello > > I have a div element into the host page, just a 'please wait' advice > while the gwt code loads. > > > > > > > > Loading application, please wait.

Re: Gwt server side in maven

2010-02-04 Thread Ignat Alexeyenko
Hi Do you have any errors during maven work? -- Kind regards, Ignat Alexeyenko. On Thu, Feb 4, 2010 at 11:13 AM, joe7935 wrote: > Hello all, > I try to build a project in maven and gwt with server side. > so i select to use a gwt-maven-plugin archetype as a maven project . > > here is my app :

Remove element on host page

2010-02-04 Thread obesga
Hello I have a div element into the host page, just a 'please wait' advice while the gwt code loads. Loading application, please wait... And I want to remove it from body when module loads, but I can't I can make it dissapear by making the div invisible; but that isn't

Re: Gwt server side and maven

2010-02-04 Thread יוסף נוגידאת
thanks Ignat, do you have an example please ? thank you On Thu, Feb 4, 2010 at 10:45 AM, Ignat Alexeyenko wrote: > Hi. > > Recently I've migrated my project to Maven. > There is nothing important there - just login form and 1 RPC call (project > is only started). > > But the project is using ma

Re: Integrating GWT features into my existing app?

2010-02-04 Thread UJ
The compiled GWT javascript code is highly optimized and obfuscated. Did you consider using Rich Faces components? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To

forget DTO, Dozer and Gilead use @GwtTransient [tested on GWT 2.0.X]

2010-02-04 Thread Diego Lovison
In GWT 2.0.x you can use the annotations of the JPA and JDO without problems and without using any additional library. Your source code will be compiled normally. No exception (SerializableException) will occur. So what's the problem: In a relationship one-to-many, when the GWT tries to serialize

Re: IE bug in vertical sizing of elements

2010-02-04 Thread Thomas Broyer
On Feb 3, 8:05 pm, Thad wrote: > I have the requirement read to display widgets, rendering them similar > to how they display in a Mac/Windows application (not a web app, but a > client that provides forms for a database). The widgets are fairly > common things--labels, text boxes, checkboxes, p

Re: Compiling in subdirectory

2010-02-04 Thread Thomas Broyer
On Feb 1, 9:13 am, cromoteca wrote: > Hi, > > when I compile my module, it gets compiled into /something in the war > folder. Is there any way to compile it into /some/thing and run it > from there? The compiler always outputs into a subfolder (named after the module's name or rename-to="") of t

Re: Development Mode Performance - Any Options?

2010-02-04 Thread Thomas Broyer
On Feb 3, 11:24 pm, Erron wrote: > My performance of development mode seems to be much slower than hosted > mode (pre-2.0).  I frequently get the prompt that the script is taking > too long, would I like to abort (FF and Chrome).  I was wondering are > there some other options I can try to see if

Re: GWT 2.0 internet explorer 7 devmode issue?

2010-02-04 Thread Thomas Broyer
On Feb 2, 10:09 pm, fark wrote: > I'm having difficulties with ie7 devmode on windows xp and gwt 2.0. > Basically if I click a link in ie while running the app, the url is > replaced and the application reloads if there are history tokens. > > A simple test showing the url modification (note thi

Re: GWT 2.0 and java Generic

2010-02-04 Thread Thomas Broyer
On Feb 2, 4:25 pm, Jinat wrote: > Does GWT 2.0 surpports java 1.6 Generic syntax? Er, you mean Java 5 ? http://java.sun.com/javase/6/docs/technotes/guides/language/enhancements.html Support for generics was added in GWT 1.5. -- You received this message because you are subscribed to the Googl

Re: MVP with GWT 2.0/UiBinder could be simplified

2010-02-04 Thread Thomas Broyer
On Feb 3, 5:51 am, mahjong wrote: > > Personally, I don't like the "Presenter.Display" approach where you > define a bunch of methods returning "HasClickHandler", "HasText", > "HasValue" type of things - though the presenter no longer cares about > the UI layout, it still needs to know about the

Re: Compiling in subdirectory

2010-02-04 Thread cromoteca
Hi, thank you for your answer. It looks like I've not expressed my question correctly, my fault since English is not my language. I'm referring to GWT compilation, not Java compilation. To better organize my project, I'd like to put GWT files (mymodule.nocache.js, MD5*.html, gwt.rpc and so on) in

Re: SuggestBox hides RootLayoutPanel and all its contents

2010-02-04 Thread hriess
Thank you, Stefano. I've seen this solution already in Issue 4352 - but I don't understand, how it works. Unfortunately it solves only the problem with the SuggestBox , not with some of my PopupPanel based widgets. -- You received this message because you are subscribed to the Google Groups "Goo

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-04 Thread mariyan nenchev
Yes it has very fancy widgets but the integration with the server side is killing unless you decide to purchase pro/ee, which is why it is done that way, to show the devs how rich library it is and when they began to use it they understand that they must buy pro/ee else they will code hundreds line

Re: Gwt server side in maven

2010-02-04 Thread יוסף נוגידאת
Is any thing wrong ??? On Thu, Feb 4, 2010 at 11:13 AM, joe7935 wrote: > Hello all, > I try to build a project in maven and gwt with server side. > so i select to use a gwt-maven-plugin archetype as a maven project . > > here is my app : > > public class Application implements En

Re: Problem with Thread in GWT2.0

2010-02-04 Thread mariyan nenchev
Java script is sigle threaded, you can not use threads in the client side of gwt project. Just use AcyncCallback. On Thu, Feb 4, 2010 at 2:18 AM, SergeZ wrote: > Hi everybody! I meat the following problem. When my GWT app is > started it is very necessary to make an asynchronous call - to gethe

Re: Is this bug fixed?

2010-02-04 Thread mariyan nenchev
OK, i will do it. But any suggestions for workaround, i need this quickly. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email

Gwt server side in maven

2010-02-04 Thread joe7935
Hello all, I try to build a project in maven and gwt with server side. so i select to use a gwt-maven-plugin archetype as a maven project . here is my app : public class Application implements EntryPoint { public void onModuleLoad() { final Button button = new Button(); final

Re: Gwt server side and maven

2010-02-04 Thread olivier nouguier
Hi Take a look at http://code.google.com/p/orcades-gwt-spring/ I use maven, wtp and GWT. But AFAIK, the springframework && jetty embed server doesn't fit well and I cannot use jettty embed server. On Wed, Feb 3, 2010 at 9:35 AM, joe7935 wrote: >

Re: Upgrade problem 1.7 --> 2.0

2010-02-04 Thread Rokesh
hi, this might be useful when switching back to GWT 1.7 from GWT 2.0 === Note if you switch back to GWT1.7, you have to do the following: Remove all files in C:\Documents and Settings\YOUR_USERNAME\Local Settings\Temporary Internet Files\Content.IE5 see for more info: http://groups.google.com/

Re: GWT 1.7 upgrade Issue in Linux

2010-02-04 Thread Ignat Alexeyenko
Hello. Have no problems on upgrading my app to the new version of GWT. Delete all the output GWT compiler directory. Review all the warning/error messages that are shown by GWT compiler. -- Kind regards, Ignat Alexeyenko. On Mon, Feb 1, 2010 at 1:20 PM, has wrote: > I try to upgrade from GWT 1

Re: How to write test cases (in GWTTestCase) to test UI components of GWT?

2010-02-04 Thread Ignat Alexeyenko
Hi. You can create events and throw them to your components. I.e. you can write something like that in GWT Test Case method: Label label = new Label(); CheckClickedClickHandler handler = new CheckClickedClickHandler(); label.addClickHandler(handler); NativeEvent ne = Docu

Re: Gwt server side and maven

2010-02-04 Thread Ignat Alexeyenko
Hi. Recently I've migrated my project to Maven. There is nothing important there - just login form and 1 RPC call (project is only started). But the project is using maven with gwt plugin for GWT 2.0 compilation. http://sourceforge.net/projects/simpleworklog/ Just checkout it somewhere and launc

  1   2   >