Is Cell Table in 2.1 supports sorting of column ?

2010-10-27 Thread rajakumar Iyyemperumal
Hi All, I am trying to work on GWT 2.1 and I want to know that the new Cell Table in 2.1 supports column sorting or not ? -- 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...@googlegroup

Re: Sample App using DI/Gin, MVP, UiBinder, etc

2010-10-27 Thread StrongSteve
Very nice idea. Thanks a lot for your effort. Will there be a recording of the seminar for all of us on the other side of the pond? ;) Greetings Stefan On Oct 28, 4:19 am, Ashton Thomas wrote: > Here is a direct link to the source > code:http://github.com/ashtonthomas/gwt-seminar > > I will co

Re: How to load a module dynamic? Pluggable module

2010-10-27 Thread Didier DURAND
Hi, Code splitting should help you toward your target See http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html didier On Oct 27, 5:14 pm, kendeng9898 wrote: > I want to build up an application with a pluggable function. This > application is base on gwt 2.0.3 and jboss seam

Re: ScrollPanel steals focus from FlexTable

2010-10-27 Thread John LaBanca
Try calling Event#preventDefault() and/or Event#stopPropagation() from your table code. Some combination of one or both of these should prevent the ScrollPanel from scrolling. Also, note that the ScrollPanel isn't actually handling the key event and changing the scroll position. The browser nati

Re: Sample App using DI/Gin, MVP, UiBinder, etc

2010-10-27 Thread Ashton Thomas
Here is a direct link to the source code: http://github.com/ashtonthomas/gwt-seminar I will continue to update the code for this site as well as the content on this app. Over the next few weeks I will post a lot of different sample code. Hopefully it will help others get started quicker! On Oct

How to organize a gae + gwt project into modules

2010-10-27 Thread vehdra music
Hi, i would like to know if someone can recommends me a tutorial to organize my project, or if can explain me how can i do it. In my project i need this modules: a) Core (entities classes + daos) b) Backend (gwt module where the users can admin their app data, the user must be logued) c) Widgets

ScrollPanel steals focus from FlexTable

2010-10-27 Thread MickeyR
Hi, Got a problem that's stumping me. I have a FlexTable (displaying several rows of String data) placed in a ScrollPanel. In the FlexTable I have a single row selected. So, I want the FlexTable to respond to UP and DOWN arrow keypress actions to change the row that is selected. To do this I wra

Sample App using DI/Gin, MVP, UiBinder, etc

2010-10-27 Thread Ashton Thomas
Hey Everyone, I am working on a seminar for GWT 2.1 that will happen in late November. But I will be putting together a lot of sample code. I have already pushed one app to github: http://gwt.acrinta.com/ I am still working on this, so expect updates Cheers! -- You received this message becau

Re: Renaming modules

2010-10-27 Thread Daniel Kurka
you dont have to rename the module if you dont like it. renaming is just for convienience - Daniel Kurka 2010/10/27 hezjing > Hi > > I was reading > http://code.google.com/webtoolkit/doc/latest/DevGuideOrganizingProjects.html#DevGuideModuleXml, > and see the following code snippet under renam

Re: 2.1 RC1 Logging Question

2010-10-27 Thread Rud
Thanks for thinking about this but, no, I am not using Roo. It looks like a GAE or Jetty issue. Rud On Oct 27, 1:20 pm, unnurg wrote: > Are you using the Roo/RequestFactory stuff? The > RequestFactoryLogHandler takes a level in it's constructor, and it > doesn't send messages below that level a

Re: To cancel form submit event of FormPanel on press of enter key

2010-10-27 Thread Steve C
Actually, that isn't true - see http://code.google.com/p/google-web-toolkit/issues/detail?id=5067 The only way that works is to add a KeyDownHandler to each TextBox in the form, that checks the native key code and calls event.preventDefault if it is the Enter key On Sep 13, 8:55 pm, lineman78 w

Re: File Upload from jsp through GWT client

2010-10-27 Thread nacho
Have you tried this lib? http://code.google.com/p/gwtupload/ On 27 oct, 12:00, WL wrote: > Hi , > > I’m working on a application which has GWT client and jsp’s. > The Layout of the page is designed in the GWT client and the body of > the page is taken from the jsp.  I want to do a file upload fro

Re: RequestFactory binding exception 'getId() is overloeded on ...'

2010-10-27 Thread invinity
Additional info... I've determined that his is because the 'getId' method defined in my interface has a return type of 'Object', which differs from the actual return type of my concrete classes 'Long'. A structure like this causes Class.getMethods() to return 2 methods, one for the base- interface

Re: Avoid Use of Browser Detect

2010-10-27 Thread Fredsome
Thanks, Thomas. That would solve the issue for me. Can anyone else verify this? On Oct 20, 2:55 pm, Thomas Broyer wrote: > On 19 oct, 22:08, Fredsome wrote: > > > After > > readinghttp://groups.google.com/group/google-web-toolkit/browse_thread/threa..., > > I understand that the Browser Detect

Cannot get GWT.log() in the console

2010-10-27 Thread codecomplete
I just upgraded from GWT 1.7.1 to GWT 2.0.4 and now my GWT.log() calls no longer appear in the new Console window? Did I miss a configuration change or do I need to add gwt-log.jar to the project? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

RequestFactory binding exception 'getId() is overloeded on ...'

2010-10-27 Thread invinity
Hey all 1st post! I'm building my 1st app with 2.1.0.RC1 (in eclipse helios) and using the new RequestFactory to map my JPA (eclipselink) entities. Things were going fine during my initial buildout until I added a "Long getId()" method to each of my EntityProxy interfaces. After this I get a Runti

How to load a module dynamic? Pluggable module

2010-10-27 Thread kendeng9898
I want to build up an application with a pluggable function. This application is base on gwt 2.0.3 and jboss seam 2.1.2. This is what I want the application load the plug. - Serverside have a monitor checking a plugins-upload folder - When It find a validate plugin in plugins-upload folder - Gene

File Upload from jsp through GWT client

2010-10-27 Thread WL
Hi , I’m working on a application which has GWT client and jsp’s. The Layout of the page is designed in the GWT client and the body of the page is taken from the jsp. I want to do a file upload from the jsp through the GWT Client using RequestBuilder class. I have tried using the FormPanel toget

best practice for handling CSS themes

2010-10-27 Thread Potate
Hi folks My goal is to support theme selections at run time. Here is what I'm planning to do. I have some questions and I'm also looking for comments and suggestions: - start with a builtin GWT theme (standard, chrome, or dark) by declaring in .gwt.xml module file. - create .css files that overr

NullPointerException in Command

2010-10-27 Thread javest
hi I have a weird situation, which I'll try to explain. mMyClass.setMyListener(new Command() { public void execute() { RootPanel mainPanel = RootPanel.get(ID); mainPanel.add(mMyClass); } }); when execute() is ca

How can i delete a GWT Module?

2010-10-27 Thread nacho
I made a GWT module in eclipse (File -> New -> Module) And now, i want to delete that module. I already deleted MyModule.gwt.xml and MyModule.java (entry point class). But when i try to run my application i get this in my console: Loading modules com.mycompany.myapp.MyModule [ERROR] Una

Re: 2.1 RC1 Logging Question

2010-10-27 Thread unnurg
Are you using the Roo/RequestFactory stuff? The RequestFactoryLogHandler takes a level in it's constructor, and it doesn't send messages below that level across the wire - I believe that in DynaTableRF and the generated roo scaffold app, WARNING is the default level that is passed in. - Unnur On

Re: Cant able to get the logs on server

2010-10-27 Thread unnurg
Hi Pallavi - You'll need to provide some more information here - Are you serving the logging servlet? The logging example shows how to do this. You can use firebug to see if your RPC request is being sent, and if so, what is happening to it. If the request is sent, but you're not getting a

Re: Error compiling GWT source code from trunk

2010-10-27 Thread Qian Qiao
On Sep 20, 10:30 pm, Ashton Thomas wrote: > I was trying tocompilethe source code on Ubuntu but switched to a > mac and it compiled. Ubuntu hasant1.8and mac hasant1.7.1 > > Not sure if this is specific to the theantversion on Ubuntu. > It appear as if ant 1.8 is being dodgy here. I can compile th

Re: DynaTableRf fails - GWT Designer case of RequestFactory Problem

2010-10-27 Thread Rud
Please see the thread "Cannot found source in GWT Project" I uninstalled Designer and this solved my problem with the project: Rud http://www.mysticlakesoftware.com On Oct 26, 3:48 am, Thomas Broyer wrote: > On 26 oct, 08:18, Rud wrote: > > > Working to understand the RequestFactory with the Dy

Re: Automated end-to-end testing?

2010-10-27 Thread Hilco Wijbenga
On 27 October 2010 10:33, Donald McLean wrote: > Does anyone know of any products/frameworks etc that would be good for > doing automated end-to-end functional testing in a headless build > server? Selenium or one of its cousins? -- You received this message because you are subscribed to the Go

Re: Cannot found source in GWT Project

2010-10-27 Thread Rud
I mentioned the same problem in http://groups.google.com/group/google-web-toolkit/browse_frm/thread/48d776e472cffd05# I tried the DynaTableRF project for learning RequestFactory. I created an Eclipse project, deleted the Greeting stuff and copied the SRC & WAR from the DTRf project. Then made all

Re: GWT-Platform spring integration

2010-10-27 Thread Travis Camechis
Yeah but it generates everything using the Requestfactory which is completey different than dispatch On Wed, Oct 27, 2010 at 9:24 AM, Stefan Bachert wrote: > Hi, > > you could play with Spring Roo. > My last try with Roo was not successful with non trivial cases, > however, Spring Roo probably do

Re: GWT and CSS - Style Problem

2010-10-27 Thread StrongSteve
the way to go would be to define your own styles in the css and to bind them to the decorated stack panel using panel.setStylePrimaryName(nameOfYourStyle). Greetings Stefan On Oct 26, 4:09 pm, Jeff Larsen wrote: > The default styles are being pulled in via this line in your *.gwt.xml > >   > >

Re: History.back() in GWTTestCase doesn't seem to work

2010-10-27 Thread Potate
oops I meant GWT 2.1 RC1 On Oct 26, 2:07 pm, Potate wrote: > Hi all > > I'm trying to test history management in my app. I'm emulating a > browser back button click using History.back(). The call doesn't work > =/. > After calling History.back(), my registered onValueChange doesn't get > invoked.

Re: Servlet mappings in GWT development mode

2010-10-27 Thread nacho
Yo say that you can enter in http://localhost/foo.html but then you say that you want to enter to http://mymachine:/foo.html?gwt.codesvr=mymachine:9997 What about if you enter to http://127.0.0.1:/foo.html?gwt.codesvr=127.0.0.1:9997 On 26 oct, 19:39, Constantin Tanno wrote: > My GWT ho

Re: GWT Complier OutOfMemory issue

2010-10-27 Thread Chris Conroy
For a really large compile, you might want to supply more than 1G of memory. I would try upping your -Xmx. On Tue, Oct 26, 2010 at 5:37 PM, Fernando wrote: > Hi: > > I have the same problem compiling with GWT 2.0.4. My project has about > 3500 classes. > > Did you find any solution? > > Thanks i

Re: GWT 2.1 gwt-servlet sources JAR

2010-10-27 Thread David Chandler
It's hard to hide in Maven Central. I'll post here and on the GWT blog when it's official: http://googlewebtoolkit.blogspot.com/ /dmc On Wed, Oct 27, 2010 at 8:00 AM, Richard Allen wrote: > After I wrote the above, I checked the Maven central repo again and > saw that it now has GWT 2.1.0, in

Cant able to get the logs on server

2010-10-27 Thread pallavi rawat
I am not able to get the logs on my server. The Application server I am using to run my GWT Application is WebSphere server v7.0. I am just able to get the logs on Development mode window of eclipse but rest of the handlers are not working. Below are the configurations i am using in my application

MVP and ClickListeners

2010-10-27 Thread cruser
Hi All, I am new to GWT and I am trying to implement an MVP pattern in my app. Having watched Daniel Danilatos session on GWT Testing Best Practices from Google IO 2010 I am particularly interested if anyone can point me in the right direction to some sample code based on what Daniel presented ie:

History.back() in GWTTestCase doesn't seem to work

2010-10-27 Thread Potate
Hi all I'm trying to test history management in my app. I'm emulating a browser back button click using History.back(). The call doesn't work =/. After calling History.back(), my registered onValueChange doesn't get invoked. History.newItem, on the other hand, triggers the onValueChange callback.

Re: GWT Complier OutOfMemory issue

2010-10-27 Thread Fernando
Hi: I have the same problem compiling with GWT 2.0.4. My project has about 3500 classes. Did you find any solution? Thanks in advance. The JVM parameters are: -Xss32m -Xms32m -Xmx1024m -XX:MaxPermSize=256m The StackTrace is: ---

hidden column on a grid

2010-10-27 Thread Cristina
Hello, I want to hidden columns on a grid, so I set the parameter setHidden in each column to true. But I don't want to see this column when I push on the drop down button. I try it with css style but I still see the column, what can I do?? I put some code of the column configuration: ColumnConf

Re: SEO Question.

2010-10-27 Thread farmazone
here are examples of something similar http://www.asual.com/jquery/address/ On Oct 27, 11:43 am, RPB wrote: > Hi Subhro, > > You need to create a PHP page which will serve static information if > it detects "_escaped_fragment_=" or just the normal GWT page > otherwise. Something like this: > if

Re: SEO Question.

2010-10-27 Thread farmazone
I have found only this http://www.asual.com/jquery/address/ :( On Oct 26, 6:10 pm, Subhrajyoti Moitra wrote: > Hello, > I have to build an application which has a PHP backend and GWT client. > How do we make it crawlable? The urls follows Google, ajax url format of > "#!". > > How do we take HTML

jdoDetachedState problem

2010-10-27 Thread Cristian Miranda
The problem is solved using this line.. @PersistenceCapable(identityType = IdentityType.DATASTORE, detachable = "false") everything else is just fine, thank you for all. -- SOLUTION -- package ar.com.app.domain; import java.io.Serializable; import javax.jdo.annotations.IdentityType; imp

incubator DateTimePicker style

2010-10-27 Thread chrisr
I was looking for a date+time widget, and I came across DateTimePicker in the gwt incubator project. I have 2 questions... 1: Are there any recommendations out there for a different Date+Time selection widget? (In case incubator is not the way to go..) 2: I haven't been able to find either an ex

Re: What Major Companies Use GWT???

2010-10-27 Thread markM
We use it within the Pfizer corporation. It's also been used within Toyota U.S. You may also want to visit the smart-soft web site as many of the companies listed there have probably taken GWT training. It's a beautiful thing to no longer have to deal with JSP's. Even with facilities like JSF,

Re: How can I het a URL link to open up my web app passing an argument?

2010-10-27 Thread nacho
great :) On 27 oct, 08:17, novarse wrote: > great, thanks nacho. exactly what i wanted > > On Oct 27, 4:01 am, nacho wrote: > > >http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g... > > > On 26 oct, 07:59, novarse wrote: > > > > Hi all, > > > Lets say I have a twitter messag

Re: Cannot found source in GWT Project

2010-10-27 Thread Eric Clayberg
It would be helpful to see a test case project that wil reproduce this. On Oct 25, 9:59 am, AlexG wrote: > Okay, > > the problem is solved. > > The problem was the GWT Designer, the new Enhanced Compilation > feature. > I uninstalled the GWT Desginer and the Erros are gone now. > > Greets > Alex

Re: GWT Designer can not download !

2010-10-27 Thread Eric Clayberg
What exactly do you mean by "GWT Designer can not download"? Without any context or a more detailed problem description, I have no idea what the problem might be. On Oct 23, 1:34 am, Priest Wen wrote: > GWT Designer can not download ! > > What's the problem ? -- You received this message becau

Re: GWT-Platform spring integration

2010-10-27 Thread Stefan Bachert
Hi, you could play with Spring Roo. My last try with Roo was not successful with non trivial cases, however, Spring Roo probably does generate the best Spring integration (but using aspectJ) Stefan Bachert http://gwtworld.de On 25 Okt., 23:47, tc wrote: > Does anyone have an example of using t

JDOFatalUserException on pm.newQuery(query).execute();

2010-10-27 Thread Josh
I keep getting JDOFatalUserException when i run the following code. I was going to use my own uniqueIdKey but with the error tried Key instead. I have the singleton PMF and have followed the guides but not sure why Im still getting this. http://code.google.com/appengine/docs/java/datastore/overview

Re: GWT 2.1 gwt-servlet sources JAR

2010-10-27 Thread Richard Allen
After I wrote the above, I checked the Maven central repo again and saw that it now has GWT 2.1.0, including gwt-servlet-2.1.0- sources.jar. Is GWT 2.1 now GA? Should developers be using http://google-web-toolkit.googlecode.com/svn/2.1.0 or http://repo2.maven.org/maven2/ for GWT 2.1? Sorry if I'm

Re: About widgets management

2010-10-27 Thread Jeff Schwartz
You can do it either way depending upon your requirements. If you want your widgets to maintain their state use singletons with a POJO getter factory method which is easy to implement. For example, let's say you have a composite widget YourWidgetClass. Just add the following code to it. private st

GWT 2.1 gwt-servlet sources JAR

2010-10-27 Thread Richard Allen
Why is there no sources JAR for gwt-servlet 2.1.0? I'm using the following Maven repo. http://google-web-toolkit.googlecode.com/svn/2.1.0/gwt/maven/com/google/gwt/gwt-servlet/2.1.0.RC1/ With GWT 2.0.4, I'm using the central Maven repo, which has published the sources JAR. http://repo2.maven.org/ma

Re: How can I het a URL link to open up my web app passing an argument?

2010-10-27 Thread novarse
great, thanks nacho. exactly what i wanted On Oct 27, 4:01 am, nacho wrote: > http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g... > > On 26 oct, 07:59, novarse wrote: > > > Hi all, > > Lets say I have a twitter message containing an URL link which has an > > event Id as an a

About widgets management

2010-10-27 Thread Pablo G.F
I´m a newbie to GWT. My scenario is: My project is a web application. My idea is using a top menubar, with some menuItems. Click on one of this menuItems, will "open" a widget like a search form with a grid to show results, another kind of form, etc. Like if a regular web page with links in a menu

Re: How to get list of objects from JSON ??

2010-10-27 Thread Thomas Broyer
On 27 oct, 10:24, Sebastian Beigel wrote: > > You can very well subclass JSOs [...] What you cannot do is virtual > > dispatching (i.e. overring methods: > > methods must be final, but not necessarily classes). > > Of course you are right -- I wasn't precise (and thus wrong :) What I > meant (a

Inherit module JDOM

2010-10-27 Thread Pablo G.F
Hello: Im new to this so sorry if this is a trivial question. I wanna use Jdom library in one of my java classes , which is part of a GWT project. I´ve tried by adding the jdom.jar to the classpath and importing the classes I need, but it doesnt work. So I´ve read that it ´s necessary to inherit t

Re: gwt-maven-plugin from Google and Codehaus

2010-10-27 Thread Thomas Broyer
On 27 oct, 08:50, hezjing wrote: > Is there any documentation for Google's gwt-maven-plugin? As I said "Form the user POV (your, our POV), it works the same as the version from codehaus." In other words, the documentation from codehaus should apply just as well to the Google version (and it did

Re: Seam GWT Explained

2010-10-27 Thread Max
What do you mean by Seam "Can i get it working wihtout ejb's"? You want to use Spring to manage seam's bean? On Oct 27, 6:08 pm, Anand S wrote: > Hi > I am trying to integarate Seam and GWT. I have got the GWT RPC example > working, I have the SEAM remoting workging. By the way i am doing seam >

Seam GWT Explained

2010-10-27 Thread Anand S
Hi I am trying to integarate Seam and GWT. I have got the GWT RPC example working, I have the SEAM remoting workging. By the way i am doing seam remoting without using ejb's. Now I have the Seam GWT example working which is provided as an example, but the example uses ejb's. Can i get it working w

Re: SEO Question.

2010-10-27 Thread RPB
Hi Subhro, You need to create a PHP page which will serve static information if it detects "_escaped_fragment_=" or just the normal GWT page otherwise. Something like this: if(isset($_GET['_escaped_fragment_'])) { echo "Static Version of my page" } else { echo ""; //or whatever you have

RequestFactory remove() not working

2010-10-27 Thread AlexG
Hi @ all, I know, that theres an issue, and that this bug is already known. I always get errors, when I try to remove an Entity. I´m using JDO with the RequestFactory, and I get the following Error: Server Error: No such Object I checked the id and everything, but the Object definitely exists i

Re: GWT 2.1 and Place with token

2010-10-27 Thread Nicolas ANTONIAZZI
Oh, you are absolutly right ! I had not think to this case. Thanks Sebastian Nicolas. 2010/10/27 Sebastian Beigel > Hi Nicolas, > > often your places are "parameterized", think of a detail/edit screen > for example that needs the model's id. The token is a generic way to > provide additional i

Re: GWT 2.1 and Place with token

2010-10-27 Thread Sebastian Beigel
Hi Nicolas, often your places are "parameterized", think of a detail/edit screen for example that needs the model's id. The token is a generic way to provide additional information (via the URL) to the place (i.e. the activity/-ies), i.e. "#editFoo:42". You can of course re-use one place to dispa

Re: How to get list of objects from JSON ??

2010-10-27 Thread Sebastian Beigel
> You can very well subclass JSOs [...] What you cannot do is virtual > dispatching (i.e. overring methods: > methods must be final, but not necessarily classes). Of course you are right -- I wasn't precise (and thus wrong :) What I meant (and "hate" :) is that you're not allowed to override meth

Re: What Major Companies Use GWT???

2010-10-27 Thread Flori
http://www.jboss.org/drools/drools-guvnor.html uses GWT + Errai + GXT and JBOSS as Application Server -- 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

GWT 2.1 and Place with token

2010-10-27 Thread Nicolas ANTONIAZZI
Hello, I converted all my project to GWT 2.1 Activity/Place following the concept described on http://code.google.com/intl/fr/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html But, doing this work, I came to a question : Why do we have to set a name in the place constructor ? A place gener