Re: how to create a new field "username" in spring roo generated entities

2010-11-03 Thread Kasper Hansen
How about you create an issue, and star it ? Cheers. On Thu, Nov 4, 2010 at 12:04 AM, Flan Brody wrote: > +1 > > Integrate GWT and Spring Security 3 with Roo > > > On Wed, Nov 3, 2010 at 11:44 AM, Arash wrote: > >> +1 >> >> authentication and authorization is certainly a crucial requirement >

Re: Crossdomain -POST Request using Request Builder

2010-11-03 Thread Raghunath
Actually the status code is always 0 , digging for more. If you have any solution please let me know On Nov 4, 9:25 am, Raghunath wrote: > Hi > > I'm trying to post a text message to cross-domain using > RequestBuilder. Problem is the remote server is getting the request. > But the GWT client is

server push

2010-11-03 Thread Ray Tayek
hi, trying to do this:: http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ#Server_Push_in_GWT. does anyone have any experience with this? i know there may be other options, but i want to roll my own for demo. thanks --- co-chair http://ocjug.org/ -- You received this me

Crossdomain -POST Request using Request Builder

2010-11-03 Thread Raghunath
Hi I'm trying to post a text message to cross-domain using RequestBuilder. Problem is the remote server is getting the request. But the GWT client is getting empty string iin the response. I tried in several ways but no use. Please suggest me. for (RESTClientListeners restClient

life is a game so enjoy

2010-11-03 Thread siva subramanian
http://123maza.com/35/traditional951/ -- 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 to google-web-toolkit+unsubscr...@g

Re: UiBinder fails after upgrading to gwt 2.1.0

2010-11-03 Thread Richard Berger
OK, this won't help much, but... I was having the same problem just going through some basic tutorial using UiBinder and GWT 2.1. So, I redid everything, writing down each step - and, of course, the problem vanished. So, there exists the possibility that 2.1 and UiBinder do actually work together

Re: Nested Views in MVP

2010-11-03 Thread David Chandler
Thanks for your thoughts, Nicolas. I believe the reason we've not created View and Presenter interfaces to date is because there are two different styles of MVP widely in use, only one of which allows the view to call the presenter as in your example. Which leaves us in the funny position that the

GWT + Google Visualization references

2010-11-03 Thread aces2805
Hi Guys, I have some problems in the integration of google visualization and GWT, need some references and examples. Hoping for your kind help. Thanks, -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai

Re: Serializing Enum with Marker Interface

2010-11-03 Thread Patrick Tucker
Is the package or any parent package of the interface included in your project's xml file so that GWT can find it? On Nov 1, 2:57 pm, Mike wrote: > If I move the interface into the Enum's package, the GWT compiler > appears happy. > > Opened an > issue:http://code.google.com/p/google-web-toolkit

Extend GOverlay from the Maps API

2010-11-03 Thread Patrick Tucker
Is it possible to write a GWT JavaScriptObject that extends GOverlay from the Google Maps API? I don't have the luxury of using any of the GWT wrappers that are out there because none of them are compatible with the GFusionMap object from the enterprise version of the API. If this statement is no

Does SimplePager have to be subclassed in order for the last page button to work?

2010-11-03 Thread Jeff Schwartz
I am using a SimplePager but the last page button is never enabled. I didn't subclass SimplePager. Doe it need to be? Thanks in advance. Jeff -- Jeff -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to g

Re: Testing complex Widgets without interface ?

2010-11-03 Thread Ed
I am looking in the Cell Widgets, but can't find what you mean. Can you give me some more details like a specific Cell Widget and his internal presenter ? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to

Re: How RPC works on GWT?

2010-11-03 Thread Thomas Broyer
On 3 nov, 20:24, JuDaC wrote: > Tercio, had made that. > > GWT do read the post body using InputStream. What I do is to make this > read before, in my valve, and put this content on the parameters. On > the RemoteServiceServlet I had to override the method readContent, so > I can get the value f

Re: Testing complex Widgets without interface ?

2010-11-03 Thread Ed
Thanks Thomas, now worries, I understand you point/advice, I wasn't aware of the WhyWidgetIsAClass article which is very helpful. I just commented on it as well. I would love to hear your advice on that? http://code.google.com/p/google-web-toolkit/wiki/WhyWidgetIsAClass -- You received this mes

Re: Nested Views in MVP

2010-11-03 Thread Nicolas Antoniazzi
> > Thanks for your comments. Do you mind sharing with us what would go in the Presenter interface to allow you to "fully use" MVP? We're very much open to ideas from the community as to how to make it work better. Well, in my opinion, it would be clearer to create 2 new interfaces : 1) a "Pre

override method then calling super yields infinite loop

2010-11-03 Thread A. Stevko
Has anyone else seen this situation happen to them? I've got a class that extends PopupPanel and overrides the show() method. class MyPopup extends PopupPanel { /** * @see com.google.gwt.user.client.ui.PopupPanel#show() */ @Override public void show() { Log.info( this.getClass().getName

Re: Testing complex Widgets without interface ?

2010-11-03 Thread Thomas Broyer
On 4 nov, 00:58, Thomas Broyer wrote: > On 3 nov, 22:39, Ed wrote: > > > I like to know how others test their logica in complex widgets. > > > Example: I have a Form and FormField widget and the both extend from > > Composite. > > They contain logic that I would love to test in a unit test whic

Re: Testing complex Widgets without interface ?

2010-11-03 Thread Thomas Broyer
On 3 nov, 22:39, Ed wrote: > I like to know how others test their logica in complex widgets. > > Example: I have a Form and FormField widget and the both extend from > Composite. > They contain logic that I would love to test in a unit test which is > hard. > > Of course I could split this up in

Re: how to create a new field "username" in spring roo generated entities

2010-11-03 Thread Flan Brody
+1 Integrate GWT and Spring Security 3 with Roo On Wed, Nov 3, 2010 at 11:44 AM, Arash wrote: > +1 > > authentication and authorization is certainly a crucial requirement > for any application. Since integrated with Roo already It would be > very nice if we could have a working example of Sprin

Re: Images in buttons

2010-11-03 Thread David Cox
Thanks pete! Your solution is great and simple, and i worked that out too, but I havn't tested if you can still size the image after it has been attached to the button. Would be very interesting to try that some time. Also, it didn't work for me when i tried to declare all the widgets in the entry

Re: Testing complex Widgets without interface ?

2010-11-03 Thread Stephen Haberman
> It's an OK solution, but still a workaround because we don't have a > Widget interface. GWT 2.1 does have an IsWidget interface, if that is all that you need: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/app/place/IsWidget.html If you need more, I've been making int

Re: Application works in devlopment mode but not in war file

2010-11-03 Thread David Chandler
Hi Deepak, Please post the stack trace from the server. Thanks, /dmc On Wed, Nov 3, 2010 at 4:33 PM, Deepak Singh wrote: > Hi, > My application works well in development mode but when war file is deployed > in tomcat 5.5, it fails at the time of rpc call with following error > Uncaught com.goog

Testing complex Widgets without interface ?

2010-11-03 Thread Ed
I like to know how others test their logica in complex widgets. Example: I have a Form and FormField widget and the both extend from Composite. They contain logic that I would love to test in a unit test which is hard. Of course I could split this up in a MVP pattern, but that isn't very elegant

GWT+Roo a few days later

2010-11-03 Thread Amir Kashani
I've been playing with Roo & GWT for a couple of days now, which certainly doesn't make me an expert, but I'd like to share my experience and see how it compares with others. The application that I'm trying to create has about 8 entities that require a CRUD like interface. The rest of the applicat

External js file inclusions for specific permutations only?

2010-11-03 Thread mstahv
Hi, If have recently played with several nice libraries that would help to broaden browser support for modern web technologies. These include web- socket-js, svgweb and swfupload. To make a decent GWT module around them there is often a problem how to include JS file that is doing all the magic.

WebSockets with GWT

2010-11-03 Thread mstahv
Hi, I played with WebSockets and GWT (Vaadin to be more specific) last weekend. I found two projects that had built GWT wrappers for the emerging protocol, but the one I tried didn't work with hosted mode and the other was way too complex for my needs. I built the module so that it also includes

Correct usage of CompositeEditor?

2010-11-03 Thread billy
After watching gwt 2.1 release doc, I am exciting to try out editor framework and the request factory. Currently I had already successfully retieve of a eventProxy from my mongodb using requestFactory.I am trying to glue the eventProxy to the editor framework. I follow the MVP idea which the presen

event opening a window with GWT.

2010-11-03 Thread everton_verbo
I´m trying to display a message in mi system when the session expires. For this, i want to use an event when show the page, like a gmail. If you using gtalk in gmail and switch the tab, gtalk show your status busy or absent. I want to know what event gmail use to set the status in gtalk. -- You r

plug in problem

2010-11-03 Thread babai
hi i am babai ,i am new in GWT ,i have problem showing team structure in tree format ,data is coming from database in HashMap .I have tried some sample code but it was not working properly.so plz give some full coded example -- You received this message because you a

Re: how to create a new field "username" in spring roo generated entities

2010-11-03 Thread Arash
+1 authentication and authorization is certainly a crucial requirement for any application. Since integrated with Roo already It would be very nice if we could have a working example of Spring Security 3 authentication utilizing User and UserDetails implementations. Something like the following en

Re: Problems while upgrading a GWT maven project from GWT 2.1 SNAPSHOT to GWT 2.1.0 final release

2010-11-03 Thread David Chandler
Hi vsdev, I think you're the 3rd person to run into the plexus error on the list. As far as I know, starting with a fresh local maven repo resolves it. Please post back with your progress. /dmc On Wed, Nov 3, 2010 at 4:27 PM, vsdev wrote: > I tried to upgrade a working GWT maven project from G

Application works in devlopment mode but not in war file

2010-11-03 Thread Deepak Singh
Hi, My application works well in development mode but when war file is deployed in tomcat 5.5, it fails at the time of rpc call with following error Uncaught com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses Any idea pls. I

Re: Database data and GWT applications

2010-11-03 Thread Chad
Owen, Everyone is responding with, yes you can use GAE as your datastore and you can. But you don't have to. Every app I've developed with GWT is a database driven application and I've not used GAE for any of them. I've used SQL Server for some and MySQL for others and Tomcat for all of them. All

Problems while upgrading a GWT maven project from GWT 2.1 SNAPSHOT to GWT 2.1.0 final release

2010-11-03 Thread vsdev
I tried to upgrade a working GWT maven project from GWT 2.1 SNAPSHOT to the GWT 2.1.0 final release. That is, I changed the GWT version in the pom.xml from 2.1-SNAPSHOT to 2.1.0. After doing that, I got the following error during the maven build (mvn install): [INFO] Unable to find resource 'com.g

Re: RequestFactory and Collections

2010-11-03 Thread Tobias
I now realized that actually setText() is called for the server Ingredient-entity. But I'm not sure if that helps me, since the Recipe instance does not know anything about the Ingredient-instance on which that happens. But I guess that's more an Objectify-problem then. Maybe I'll switch to JDO for

Re: How RPC works on GWT?

2010-11-03 Thread JuDaC
Tercio, had made that. GWT do read the post body using InputStream. What I do is to make this read before, in my valve, and put this content on the parameters. On the RemoteServiceServlet I had to override the method readContent, so I can get the value from the parameter and not from "RPCServletUt

Re: RequestFactory and Collections

2010-11-03 Thread Tobias
David, Thanks for your reply. So the RequestFactory calls persist on my server-entity, because I call "persist" on the Request-object. In this case though, I don't understand why RequestFactory transmits the whole object-graph and what happens to it on the server? Can you elaborate on how I could

Re: Nested Views in MVP

2010-11-03 Thread Thomas Broyer
On 3 nov, 13:13, Nicolas ANTONIAZZI wrote: > > I discovered with your great post that Activity were not necesserely > Presenters. I think that I will have to think again about the concept behind > activity because altough it seems simple, I think that I do not really get > the advantages of usin

Re: Nested Views in MVP

2010-11-03 Thread David Chandler
Hi Nicolas, Thanks for your comments. Do you mind sharing with us what would go in the Presenter interface to allow you to "fully use" MVP? We're very much open to ideas from the community as to how to make it work better. Thank you, /dmc On Wed, Nov 3, 2010 at 8:13 AM, Nicolas ANTONIAZZI wrote

Re: RequestFactory and Collections

2010-11-03 Thread David Chandler
Tobias, RequestFactory doesn't do cascading updates or deletes. You'll have to make a separate call from the client to do this (or possibly you could implement in the parent entity's persist() method). By the way, persist() is just an example method name. As far as RequestFactory is concerned, it'

Re: HTML5 innershiv

2010-11-03 Thread davidroe
I very much appreciate this and apologies for going silent on the issue. I believe that I made all the changes indicated by steps #1, #2 and #3 above, my issue is how and where to include the innerShiv function. should the innerShiv function be included somewhere in the GWT source? I could not pic

Re: Database data and GWT applications

2010-11-03 Thread David Chandler
Hi Owen, Whoa! Have you looked at the Expenses sample app in GWT trunk? It runs on GAE with the App Engine Datastore. http://code.google.com/p/google-web-toolkit/source/browse/#svn/trunk/samples/expenses%3Fstate%3Dclosed GWT-RPC or RequestFactory let you easily make AJAX calls to any servlet-bas

Re: Database data and GWT applications

2010-11-03 Thread Didier DURAND
Hi Owen, Did you also install the Google App Engine part of Google SDK on your Eclipse? Then running and debugging a database-oriented application gets easy and efficient: the SDK has a Jetty (i.e Tomcat-like) in it. So, you can fully test locally and test deploy as easily on App Engine infrastruc

Re: CellTree, adding data to a child node and refresh

2010-11-03 Thread John LaBanca
You are correct that refreshing the ListDataProvider will only update that level of the tree. You need to keep a reference to ListDataProvider in order to refresh that section of the tree. That probably means creating a parallel tree structure of ListDataProviders, or at least having a map for Ob

Re: unable to install GWT Eclipse plugin

2010-11-03 Thread SteveB
Yes, I have set up my id/password for http & https with a manual provider. What is considered "able to correctly access" the update site? I'm getting a Not Found message. On Nov 3, 10:35 am, Rajeev Dayal wrote: > I would stick with the non-classic install mechanism. > > Have you set up your pro

Re: Database data and GWT applications

2010-11-03 Thread Jeff Schwartz
You can use gwt & the App Engine Datastore but you have to use the App Engine Datastore api. There is no connection string required. Check out google docs for the app engine datastore. On Wed, Nov 3, 2010 at 1:20 PM, OS wrote: > Hello, > > This is my first posting here so I'm sorry if all this h

Re: How do I check out the Samples into Eclipse

2010-11-03 Thread Stephen Haberman
> 1: Separate samples take more time to set up / install. > 2: Separate samples take up more space in my window. If they're all > part of one project, I can close that project, and they all > disappear. You can use either Eclipse working sets or a separate workspace if it really bothers you. >

Re: How do I check out the Samples into Eclipse

2010-11-03 Thread Greg Dougherty
1: Separate samples take more time to set up / install. 2: Separate samples take up more space in my window. If they're all part of one project, I can close that project, and they all disappear. 3: If they're all under one directory, I can easily do a search of all the examples. If they're each i

Re: gwt-log-3.0.4 available for download

2010-11-03 Thread Fred Sauer
Yes, absolutely On Wed, Nov 3, 2010 at 9:07 AM, gcstang wrote: > Will gwt-log still work in 2.1 ? > > On Nov 2, 11:59 pm, Fred Sauer wrote: > > The code in GWT 2.1 was inspired by gwt-log, but the two APIs and > > implementations are different. The most practical difference is this: > > > >

Re: My CellTable is slow and I don't know why

2010-11-03 Thread Owen Powell
I checked the CellTable style sheet, it looks fine. But the standard GWT stylesheet (the "standard.css" resource that gets loaded in my app) contains a dependant style selector "table td". Could this be my problem? Can the standard style sheet somehow be modified? Best, ~Owen On 3 nov, 18:08, O

Database data and GWT applications

2010-11-03 Thread OS
Hello, This is my first posting here so I'm sorry if all this has been covered before. I've come to GWT from a J2EE background. I though GWT would be a great way of combining data mining at the backend with a nice UI at the front. However, I've fallen over at the first hurdle. Apparently GWT will

CellTree, adding data to a child node and refresh

2010-11-03 Thread Ümit
Hi all, I have an issue with the CellTree and adding new items to a child node. I am not exactly sure if my approach is flawed or maybe there is an issue with the CellTree but maybe somebody can help with that problem. So basically I followed the CellTree example from the showace. I have a CellTr

Re: My CellTable is slow and I don't know why

2010-11-03 Thread Owen Powell
Thanks John, the problem definitely seems to be descendant style selectors (since I see recurring Javascript calls in Speed Tracer). But I'm not sure why this is, since I don't have any styles defined in my app. Could it be that the default CellTable style file is creating this problem? ~Owen On

Re: How do I check out the Samples into Eclipse

2010-11-03 Thread Chris Conroy
Import the existing projects from the samples directory. I don't understand your complaint about having separate projects: the samples are distinct and isolated from each other. On Wed, Nov 3, 2010 at 12:27 PM, Greg Dougherty wrote: > How do I check out the samples in trunk into Eclipse in a usef

Re: Images in buttons

2010-11-03 Thread pete
As far as I remembered, I instinctively tried to resize the image that is assigned to the button and that worked... I.e. Image image = new Image(source); image.setWidth("100px"); image.setHeight("50px"); PushButton button = new PushButton(image); I think if your image is really huge and only used

How do I check out the Samples into Eclipse

2010-11-03 Thread Greg Dougherty
How do I check out the samples in trunk into Eclipse in a useful manner? Note: Adding 10 different projects to my Eclipse workspace isn't "useful". Neither is checking outa single project full of uncompiled code. The point of having it in Eclipse is that Eclipse has great tools for dealing with

RequestFactory and Collections

2010-11-03 Thread Tobias
Hi, I am working on an example application to learn about RequestFactory and the new Editor framework. The idea is to edit a Recipe, which has multiple ingredients. The ingredients are displayed in CellTable. This still involves a couple of problems (e.g., http://groups.google.com/group/google-web

Re: gwt-log-3.0.4 available for download

2010-11-03 Thread gcstang
Will gwt-log still work in 2.1 ? On Nov 2, 11:59 pm, Fred Sauer wrote: > The code in GWT 2.1 was inspired by gwt-log, but the two APIs and > implementations are different. The most practical difference is this: > >    - GWT implements java.util.logging >    - gwt-log uses a log4j inspired static

Re: GWT +maven war plugin - Missing files after compile

2010-11-03 Thread Jon Vaughan
Is the war folder a target folder or a source folder? You would have more luck following the std maven war plugin convention as detailed http://mojo.codehaus.org/gwt-maven-plugin/project.html On Nov 3, 3:02 pm, "stephan.beu...@googlemail.com" wrote: > Hello, > > I've problems using the gwt-maven

Re: GWT +maven war plugin - Missing files after compile

2010-11-03 Thread Hilco Wijbenga
On 3 November 2010 08:02, stephan.beu...@googlemail.com wrote: > I've problems using the gwt-maven-plugin. After compiling the gwt > project, there are some files missing in the war. Have a look at this: http://osdir.com/ml/Google-Web-Toolkit/2010-08/msg00771.html. Maybe the attached example proj

Re: JUnit testing GWT

2010-11-03 Thread Ignat Alexeyenko
Arthur, These rules are just good OO design - when you are depend on interfaces rather than concrete classes. One of the pros of following this principles - you can simplify testing by using mocks instead of real objects. You can read more about why programming to interfaces are so importang. GWT

UiFactory arguments

2010-11-03 Thread Jon Vaughan
The doc for UiFactory says "If your factory method needs arguments, those will be required as attributes.". The javadoc for the annotation says "The parameter names of the constructor are treated as required xml element attribute values." So why do I get: [ERROR] missing required attribute(s):

Re: GWT module 'applicationScaffold' may need to be (re)compiled

2010-11-03 Thread Juan Carlos González
Hi Rajeev, Thanks for your answer. As we're just testing the new GWT version, Roo tool, etc. this is not a problem. Anyway we deployed the example to appengine and the desktop behaviour is OK. I've posted another issue reporting some problems with the mobile behaviour. K.R. Juan Carlos On Nov 3

Several errors when testing expenses-gae project with mobile browser (iphone-safari)

2010-11-03 Thread Juan Carlos González
Hi, I'm testing the expenses-gae roo script provided with last STS version I've deployed the example to app engine and the desktop version works fine. However, when trying to browse with mobile safari I get the following errors: 1. The dialog requesting signup keeps on showing forever. I think th

Re: unable to install GWT Eclipse plugin

2010-11-03 Thread Rajeev Dayal
I would stick with the non-classic install mechanism. Have you set up your proxy settings in Preferences -> General -> Network Connection? Also, are you able to correctly access this update site: http://download.eclipse.org/eclipse/updates/3.6 ? On Wed, Nov 3, 2010 at 9:36 AM, SteveB wrote:

Re: UiBinder fails after upgrading to gwt 2.1.0

2010-11-03 Thread pgraham
Update: I have commented out all code in the two files listed above so that they are as follows: MainMenu.ui.xml: MainMenu.java: public class MainMenu extends Composite { interface Binder extends UiBinder {} private static Binder uiBinder = GWT.create(Binder.class); public Ma

Re: Can't compile in eclipe - unhandled event loop exception

2010-11-03 Thread Rajeev Dayal
This seems really odd - I know that we really only tested GPE against STS 2.5.0 (if you want GPE to work with Roo and Maven project in STS, you need to be using STS 2.5.0), but I still do not understand why you'd be running into problems against an Eclipse 3.5 version of an older incarnation of STS

Re: My CellTable is slow and I don't know why

2010-11-03 Thread John LaBanca
Have you tried looking at it with SpeedTracer? We tested with large tables (100 rows), and the hover code is pretty straight forward. In past applications, we've seen performance problems when hovering due to descendant style selectors because of the way they are implemented in browser. For exam

Re: java.lang.NoClassDefFoundError: com/google/gwt/dev/Compiler

2010-11-03 Thread Rajeev Dayal
Hi, Is this a maven-based project that you're having trouble with? What does your project's build path look like? Thanks, Rajeev On Tue, Nov 2, 2010 at 3:05 PM, masterGaurav wrote: > It seems gwt-dev.jar is missing in your project classpath. > > > -- > Happy Hacking, > Gaurav Vaish > http://w

Re: How can I use a Widget to edit a CellTree node?

2010-11-03 Thread John LaBanca
GWT doesn't support what you are trying to do. You cannot add a widget to an arbitrary element that is already a descendant of a widget. There are two alternatives that could work. You could create a Cell that switches to an editable via. See EditableTextCell for an example. Alternatively, you

Re: GWT module 'applicationScaffold' may need to be (re)compiled

2010-11-03 Thread Rajeev Dayal
This is a bug with the latest version of GPE. The problem is that launching your Web Application attempts to synchronize Maven's target directory, which wipes out all of the artifacts that have been dumped there (i.e. via a compilation). We're working to fix this, and a point release of GPE with t

Re: GWT 1.7 - Development Environment using Eclipse, unable to find on classpath

2010-11-03 Thread Rajeev Dayal
Can you post the source for WatchdogMain.html? On Tue, Nov 2, 2010 at 4:38 AM, Panke wrote: > Hello everybody, > > I’m a student of computer science and in a new job of mine I can work > at an existing application with gwt. > Sadly I’m running into problems setting up my development environment.

GWT +maven war plugin - Missing files after compile

2010-11-03 Thread stephan.beu...@googlemail.com
Hello, I've problems using the gwt-maven-plugin. After compiling the gwt project, there are some files missing in the war. My pom.xml: --- http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http:// www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:// maven.apache.org/POM

Re: Cannot create new web applications.

2010-11-03 Thread Rajeev Dayal
Sorry, this slipped through the cracks.. Not sure if you still have the existing environment set up to repro this, but do you see any errors in your error logs (Window -> Show View -> Error Log)? On Tue, Oct 5, 2010 at 11:49 AM, Justin Lilly wrote: > Aptana does work with GWT. > > I installed GW

Re: GWT 2.1 CELL TABLE

2010-11-03 Thread Owen Powell
Hi Brad, In Step 3, "CellTable" should be "CellTable", right? I'm having some problems. When I follow your code (and my adjustment to Step 3), I end up with two "Matched CSS Rules" when I inspect my table in the browser. My custom CSS is there, but so is the original, and the original is taking p

Re: My CellTable is slow and I don't know why

2010-11-03 Thread Owen Powell
I've only tested it on the latest stable build of Chrome. On 3 nov, 14:28, Lukas Herman wrote: > My CellTable is slow under Firefox 3.6 only. > > On 3 lis, 14:07, Owen Powell wrote: > > > > > > > > > Hi everyone, > > > When I make a simple CellTable, the responsiveness of the table in the > > br

How can I use a Widget to edit a CellTree node?

2010-11-03 Thread David Pinn
When the user edits a node of my CellTree, I want to inject a composite widget into the tree at that point to handle the editing. To experiment with this, I created the following custom TextArea sub- class: class MyTextArea extends TextArea { public static MyTextArea addToElement(Element parent

Re: unable to install GWT Eclipse plugin

2010-11-03 Thread SteveB
Here is more information on this issue. I am using JavaEE. I am behind a proxy at work but can access many other update sites like the Helios update site, subclipse, WTP, EMF, etc. I switched to the classic update site and tried to install that way and got this error: Unable to retrieve remote

gRaphael integration

2010-11-03 Thread trippledes
Hi, I want to use some charting on my app, ive found raphaelGWT but im not sure if that does charting. From what i can tell gRaphael is the charting bit of the raphael project and raphaelGWT does not include gRaphael javascript files like bar.js and line.js. Will i need to use JSNI to use gRaphael

Re: Window 7 IE8 Drop Down List Boxes open problem

2010-11-03 Thread skippy
@UiField ListBox groupListBox; loadGroupListBox(workingLists, groupListBox); private void loadGroupListBox(ArrayList itemList, ListBox listBox) { for (int i = 0; i < itemList.size(); ++i) { ListBoxItem item = itemList.get(i); listBox.addItem(i

Re: My CellTable is slow and I don't know why

2010-11-03 Thread Lukas Herman
My CellTable is slow under Firefox 3.6 only. On 3 lis, 14:07, Owen Powell wrote: > Hi everyone, > > When I make a simple CellTable, the responsiveness of the table in the > browser to mouse events (mouseOver, mouseOut) is nowhere nearly as > fast as the table in the Showcase (http://gwt.google.co

My CellTable is slow and I don't know why

2010-11-03 Thread Owen Powell
Hi everyone, When I make a simple CellTable, the responsiveness of the table in the browser to mouse events (mouseOver, mouseOut) is nowhere nearly as fast as the table in the Showcase (http://gwt.google.com/samples/ Showcase/Showcase.html#!CwCellTable). Any ideas why this might be? My code is be

how to create a new field "username" in spring roo generated entities

2010-11-03 Thread A K
I'm trying to store the authenticated username of the person who adds a record to the datastore. Can this be done using spring roo? Can it be done without modifying the roo generated aspectj files manually? In either case, if someone could give a detailed explanation of how this can be done, it'l

Composite widget with HasText / HasHTML ?

2010-11-03 Thread Andrei Gheorghe
Hello, I'm learning GWT and I stumbled on a situation I can't get around. I'm trying to implement a Composite widget, similar in behavior to an HTMLPanel, with an icon on the left side and whatever content is inside the widget, on the right. The ui.xml would look like: label text here

Images in buttons

2010-11-03 Thread David Cox
Hi everyone I thought I would pick up gwt and play around with trying to make some pretty standard stuff. But, I have been bashing my head on this one for a bit. I have a horizontal layout with [button - image - button] and have managed to make the buttons cycle through a number of images. Now I

Re: communication between two frames

2010-11-03 Thread pratik
Hi Aditya, Can you please share your implementation of communicating between iframe and main window ? -- 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

How to create new locale?

2010-11-03 Thread kanle
Hi, I want to localize the date and format constants for my country, unfortunately i couldn't find a way to do it. After searching the trunk for i18 folder, i found out that there are DateTimeConstantsImpl_**_**.properties files under i18n/client/ constants, in which **_** is the locale ( like en_

Re: Problem with Window.ClosingHandler

2010-11-03 Thread Bruno Santos
I'm trying to use your code in version 2.1, but this showing the following errors: ProxyCreator -> line 652 -> 'The constructor TypeSerializerCreator (TreeLogger, SerializableTypeOracle, SerializableTypeOracle, GeneratorContext, String) is undefined' RemoteServiceProxy -> line 237 -> 'The constru

Re: Nested Views in MVP

2010-11-03 Thread Nicolas ANTONIAZZI
Ok that's more clear now. I totally agree that not all presenters have to be an activity. Thus, there is something missing in the "MVP" class provided by GWT 2.1 since it does not allow us to fully use MVP in this case. It would be great to get at least a tiny interface for this in future release

Re: Nested Views in MVP

2010-11-03 Thread Thomas Broyer
On 3 nov, 11:16, Nicolas ANTONIAZZI wrote: > > Would not be easier to create a Presenter interface that provides a start() > method, that would be extended by Activity ? > Thus, it would clarify the concept : Activity interface is an overlayer of > Presenter for Place management, and Presenter is

Re: Nested Views in MVP

2010-11-03 Thread Nicolas ANTONIAZZI
Hello, I migrated all my code to GWT 2.1. I was a bit surprised to not find any NestedPresenter helper. I created my "own" with an interface called NestedPresenter that provides a "start(HasWidgets.ForIsWidget container);" method. I prefered doing it this way instead of using multiple ActivityMan

Re: Image Update Memory Leak

2010-11-03 Thread Didier DURAND
Hi, IE8 is known for memory leaks with images (resizing, etc.) example: http://stackoverflow.com/questions/803150/can-someone-verify-that-this-is-an-ie8-memory-leak didier On Nov 1, 7:06 pm, hermis wrote: > Hello, > > I have written a simple application which fills a FlexTable with a set > of i

Re: Can't compile in eclipe - unhandled event loop exception

2010-11-03 Thread Stephan T
Sometimes I also get this error in the Error log: Problems occurred when invoking code from plug-in: "org.eclipse.core.resources". java.lang.NoClassDefFoundError: com/google/gdt/eclipse/platform/jdt/ model/PlatformJavaModelUtilities$IAnnotationNotAvailableException at com.google.gwt.eclip

Re: AsyncDataProvider's updateRowCount(int, boolean) method doesn't behave correctly on the last page

2010-11-03 Thread Geoffrey De Smet
Yes, I am using SimplePager. If it's the SimplePager's fault of going to 14-23 instead of 21-23 (which is indeed non intuitively), then there's still a bug, because going back one page from that point causes all kinds of wierdness: the range becomes 4-13, but the data is incorrect. Thanks for

DecoratedPopupPanel VS DialogBox

2010-11-03 Thread alexoffspring
1) What's the difference? 2) Which are the PROs and CONs of each one? 3) Is it possible to extend them in order to add the three icons 'minimize'/'maximize'/'close' like a normal desktop window? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" g

Re: Can't compile in eclipe - unhandled event loop exception

2010-11-03 Thread Stephan T
Yes, it's the "Unhandled event loop exception" that shows up in the Error log. In my plugin folder: com.google.gdt.eclipse.core_1.4.0.v201010280047.jar com.google.gdt.eclipse.maven_1.4.0.v201010280047.jar com.google.gdt.eclipse.platform.e35_1.4.0.v201010280047.jar com.google.gdt.eclipse.platform.s

Re: Spring Roo and GWT

2010-11-03 Thread Kasper Hansen
I agree. I used around 5 hours on it yesterday. Even though I like the idea of a developer-helper-application like Roo, I wish Google would make their own specialized for GAE+Datastore (possibility for Objectify)+GWT+Maven. It seems more relevant for pre-ajax web apps. On Wed, Nov 3, 2010 at 9:

Re: CellTable as a replacement for incubator ?

2010-11-03 Thread Geoffrey De Smet
Op 03-11-10 08:58, stuckagain schreef: Hi John, On Nov 2, 6:50 pm, John LaBanca wrote: CellTable isn't a complete replacement of PagingScrollTable, but we put a lot of work into the API to make it more clear and extensible. We'd like to create a full featured enterprise CellTable, but we al

Re: Reload CellTable data

2010-11-03 Thread Geoffrey De Smet
I use AsyncDataProvider, but that one doesn't have a refresh() method. I made an issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=5533 Op 02-11-10 18:42, John LaBanca schreef: Thomas is correct on both accounts.  cellTable.setVi

Spring Roo and GWT

2010-11-03 Thread Stefan Bachert
Hi, does anyone have the luck, to get a non trivial case to run with Spring Roo 1.1.0? I tried the modified clinic sample, but it results in a loading screen doing NOTHING. (Remove Calendar, change boolean to type java.lang.Boolean) At the moment it seems that Spring Roo with GWT is (still) a wa

  1   2   >