Re: uibinder with textbox focus and lostfocus

2011-06-30 Thread dadada
I see. Thank you. Btw, is there a way to group these events together? I tried surrounding them with bracket but it doesn't work. On Jun 30, 6:49 pm, Thomas Broyer wrote: > The type of handler is determined by the type of event. Here, your onFocus > method would be called on *click* of the text

Re: HTML5 pushState support

2011-06-30 Thread Nick Hristov
I just finished writing a barebones support for this: com/google/gwt/user/client/impl/HistoryStateImpl.java: package com.google.gwt.user.client.impl; /** * History implementation based on pushState */ public class HistoryStateImpl extends HistoryImpl { public native boolean init() /*-

Re: Can't install Google Eclipse plugins.

2011-06-30 Thread John More
John, Log on to the group site and search for jrmore. This is a thread about your problem and what I did to fix it. On Thu, Jun 30, 2011 at 11:44 AM, John wrote: > I can’t seem to find an answer to my problem. I’ve searched the > forums and done everything I know but still can’t get Google Ecl

Re: Problem with MySQL connection

2011-06-30 Thread Juan Pablo Gardella
Can you paste the complete stack tace? 2011/6/29 devel > Hi everyone, > > I've got again a problem where I don't know how to proceed. > I've got a Hibernate configuration that is perfectly working on a > normal Java application. I've copied everything (config, classes, > libs) to a GWT applicati

Re: Should gwt-dev.jar be on classpath on webmode?

2011-06-30 Thread David Chandler
Which version of GWT? You shouldn't need gwt-dev.jar to run RequestFactoryServlet. Can you share your Guice config? Are you passing any params to RFS? On Thu, Jun 30, 2011 at 7:28 PM, Magno Machado wrote: > This is what I get if I don't put it on classpath: > java.lang.NoClassDefFoundError: com/

Re: Drag and Drop file upload in GWT

2011-06-30 Thread J.Ganesan
For drag and drop , Pleae try these. http://code.google.com/p/gwt-fileapi/ http://code.google.com/p/lib-gwt-file/ J.Ganesan www.DataStoreGwt.com On Jun 30, 9:05 pm, Alexander Maximov wrote: > I am building an app that will allow users to fill forms and attach > supporting documents. I was wonder

Editable CellEditror strange behavior.

2011-06-30 Thread ALEX_KS
I'm using CellTable which is reading data from MySQL using RPC and AsyncDataProvider. I tryed to make come column editable and added to one of the columns editable so i added FieldUpdater with empty (!) update method. Then came strange. Tere is "value1" for some cell. I edit it and change it to, f

Re: How do you guys solve this problem?

2011-06-30 Thread David Chandler
Magno is correct. You can create multiple proxy representations of an entity, so could have ClientProxy with accessor methods for all properties and LightweightClientProxy with only getId() and getStringRepresentation(). /dmc On Thu, Jun 30, 2011 at 8:10 PM, Magno Machado wrote: > i think you c

Re: How do you guys solve this problem?

2011-06-30 Thread Magno Machado
i think you could create another proxy for Client which is just id and name But I had a similar need some time ago and I found it better to use gwt-rpc for that specific case, although the app uses mainly requestfactory On Thu, Jun 30, 2011 at 8:38 PM, Gal Dolber wrote: > Imagine an example: >

Re: Very confusing aspect of MVP documentation!

2011-06-30 Thread cri
Hmm Well, part of this is semantics I think. What exactly constitutes MVP is the question. But regardless of that, it is true: 1) That one can use the combination of Views, ClientFactory, Activities, Places, PlaceHistoryMapper, and ActivityMapper as described at http://code.google.com/web

Re: GWT works with hibernate in dev. mode but not production mode...

2011-06-30 Thread Kevin Jordan
Are you using the same database server? Is anything getting returned through RPC or whatever you're using? On Jun 30, 11:10 am, gshepherd wrote: > I've had an existing GWT project utilizing Hibernate working on > Windows fine for sometime now.  I need to port it over to Linux which > for the mos

How do you guys solve this problem?

2011-06-30 Thread Gal Dolber
Imagine an example: let say I want to show in the client the following table of Sales: Id | Client | Product | Number - 1| John Doe(2) | iMac 27'(23)| 1 2| Chris More(3) |

Should gwt-dev.jar be on classpath on webmode?

2011-06-30 Thread Magno Machado
This is what I get if I don't put it on classpath: java.lang.NoClassDefFoundError: com/google/gwt/dev/asm/commons/Method at com.google.web.bindery.requestfactory.server.ResolverServiceLayer.(ResolverServiceLayer.java:46) at com.google.web.bindery.requestfactory.server.ServiceLayer.c

Aw: POJO to JSON

2011-06-30 Thread dd
sorry, i've been fuzzy: In JSON Overlay example type T has to satisfy -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/ouFpiVf617wJ. To post to

Aw: POJO to JSON

2011-06-30 Thread dd
### AutoBeans can be used on client *and* server side: static interface MyAutoBeanFactory extends AutoBeanFactory { AutoBean login(); } // In non-GWT code, use AutoBeanFactoryMagic.create(MyFactory.class); static final MyAutoBeanFactory FACTORY = GWT.create(MyAutoBeanFactory. clas

Re: Form layout

2011-06-30 Thread isern
Ah okay, FlowPanel + CSS sounds good to me Thanks a lot people On Jun 30, 5:28 pm, Eric Metcalf wrote: > If you want a true form, then use FormPanel (http://google-web- > toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ > ui/FormPanel.html) otherwise any panel like FlowPane

Re: Very confusing aspect of MVP documentation!

2011-06-30 Thread David Chandler
Hi cri, Thanks for pointing this out. Ironically, I added that note along with other changes just a few days ago in order to try to decouple MVP from Activities and Places. The GWT team, including Ray Ryan, doesn't think of Activities and Places as an MVP framework. It's a way to manage browser hi

Re: Profiling using speed tracer does not "pick up" jvm args

2011-06-30 Thread zundel
Your JVM inspection looks like it is inpsecting the Compiler, but the launch config is for launching a DevMode session. Try opening the red GWT toolbox in the Eclipse toolbar and changing the JVM parameters there. -- You received this message because you are subscribed to the Google Groups "G

Drag and Drop file upload in GWT

2011-06-30 Thread Alexander Maximov
I am building an app that will allow users to fill forms and attach supporting documents. I was wondering if there any way to implement Drag and Drop file upload in GWT? Many thanks in advance for your response! -- You received this message because you are subscribed to the Google Groups "Googl

Re: In ListBox, how to you format first item Select... to italic and gray?

2011-06-30 Thread Eric Metcalf
You will probably want to have 2 items here. The "Select.." would be a clickable label with a background image of a downward arrow. The second would be your list adjacent under the first and hidden by default. When a user clicks on the "Select..." label, you display the list. When the user c

Re: Form layout

2011-06-30 Thread Eric Metcalf
If you want a true form, then use FormPanel (http://google-web- toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ ui/FormPanel.html) otherwise any panel like FlowPanel. UiBinder (http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html) makes it easier to create the p

GWT works with hibernate in dev. mode but not production mode...

2011-06-30 Thread gshepherd
I've had an existing GWT project utilizing Hibernate working on Windows fine for sometime now. I need to port it over to Linux which for the most part was pretty easy except for one thing, it won't display database records. I'm using GWT 2.0.3 and if I run the application on my Linux box in devel

Re: how to open a new window with output of other file in GWT

2011-06-30 Thread Eric Metcalf
There is a way to open a new window with results from a click, but it may not be the best solution for what you want. What are you trying to display? You will have the Anchor target set to "_blank" or similar. In the Url you will need to provide the page you want and any parameters. Something

Can't install Google Eclipse plugins.

2011-06-30 Thread John
I can’t seem to find an answer to my problem. I’ve searched the forums and done everything I know but still can’t get Google Eclipse plugin to install. I’m using Helios. The site I’m installing from is http://dl.google.com/eclipse/plugin/3.6. I have also tried installing from the zip files to no

Re: how to open a new window with output of other file in GWT

2011-06-30 Thread Eric Metcalf
There is a way to open a new window with results from a click, but it may not be the best solution for what you want. What are you trying to display? You will have the Anchor target set to "_blank" or similar. In the Url you will need to provide the page you want and any parameters. Something si

Re: How to redirect HTML inside a dialogbox

2011-06-30 Thread Oscar
Hi jhulford, Thanks for your answer! What you say works great for most pages although when the page wants to open a new window this is opened in a new window/tab in the browser. Is there a way to capture these events and avoid opening a new page? -- You received this message because you are s

Re: How to open a new EntryPoint file from other EntryPoint file

2011-06-30 Thread Xybrek
On Friday, 01 July, 2011 12:59 AM, Ashish wrote: Hi I need your help. In my GWT project I have two module files like below.. First File public class GTDWeb1 implements EntryPoint{ public void onModuleLoad() { -- - --- here is onClick event

Re: Very confusing aspect of MVP documentation!

2011-06-30 Thread cri
I can only say that we've been very happy with the framework described at http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html, aside from the issue I mentioned in my original post. Regarding database access and login/logout - those seem separate from MVP really. On J

Re: Form layout

2011-06-30 Thread Xybrek
On Friday, 01 July, 2011 04:03 AM, isern wrote: Hello! I have a question to you guys: What would you say it is the best way to lay out a form in GWT? I read somewhere in the group Grid and FlexTable approaches. Grid seems to be not very flexible and FlexTable doesn't look "UIBinder friendly" S

Re: Very confusing aspect of MVP documentation!

2011-06-30 Thread Xybrek
On Friday, 01 July, 2011 04:13 AM, cri wrote: If you go to http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html, you'll see the note: ** Strictly speaking, MVP architecture is not concerned with browser history management, but Activities and Places ma

GWT Frame

2011-06-30 Thread Xybrek
Hi, I need to get the underlying object of a GWT frame, for reason that I need to modify the html content of the Frame. Any ideas on how to achieve it? Thanks. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send e

Very confusing aspect of MVP documentation!

2011-06-30 Thread cri
If you go to http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html, you'll see the note: ** Strictly speaking, MVP architecture is not concerned with browser history management, but Activities and Places may be used with MVP development as shown in this

Re: Kiss Gergely csevegni szeretne

2011-06-30 Thread Juan Pablo Gardella
Thanks to clarify :) 2011/6/30 Peter > It's about google chat. He probably missclicked on the list of email > addresses, and invited google-web-toolkit@googlegroups.com for google > chat. There is nothing important in this mail :). > > 2011/6/30 Juan Pablo Gardella > >> Can you post in english

Re: Kiss Gergely csevegni szeretne

2011-06-30 Thread Peter
It's about google chat. He probably missclicked on the list of email addresses, and invited google-web-toolkit@googlegroups.com for google chat. There is nothing important in this mail :). 2011/6/30 Juan Pablo Gardella > Can you post in english? > > > 2011/6/29 Kiss Gergely > >> ---

Form layout

2011-06-30 Thread isern
Hello! I have a question to you guys: What would you say it is the best way to lay out a form in GWT? I read somewhere in the group Grid and FlexTable approaches. Grid seems to be not very flexible and FlexTable doesn't look "UIBinder friendly" So I'm thinking about using pure CSS and divs. Wha

StockWatcher test.manual hangs

2011-06-30 Thread Thad
I'm running through the StockWatcher example. The ant targets test.dev and test.prod run fine, but I cannot run the test in manual mode. Per the instructions (http://code.google.com/webtoolkit/doc/latest/ DevGuideTesting.html#DevGuideJUnitCreation): "Manual-mode test targets are not generated by t

Re: Hibernate Reverse Engineering + GWT RequestFactory

2011-06-30 Thread Juan Pablo Gardella
sl4j The problem is related to classpath. You don't have sl4j in your classpath. See: Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory 2011/6/29 Big38 > I'm a total noob in RequestFactory and Hibernate, so bare with me a > littl

Re: GWT + UIBinder

2011-06-30 Thread Mike Dee
Tried Eclipse 3.7. WindowBuilder doesn't appear to be included (or I didn't notice it). Tried installing GWT and GAE (there are builds for 3.7). Not build of WindowBuilder for 3.7 and tried 3.6. However, fewer options for project types available in this case. Probably due to no WindowBuilder f

Re: Using a JPA Entity in the client

2011-06-30 Thread Juan Pablo Gardella
This side effect will fix with a filter. But I don't know how works Eclipse Link. 2011/6/30 Jeff Larsen > If you return a collection in your pojo (List, Map, Set etc) those will not > serialize correctly. > > -- > You received this message because you are subscribed to the Google Groups > "Googl

Re: Using a JPA Entity in the client

2011-06-30 Thread Jeff Larsen
If you return a collection in your pojo (List, Map, Set etc) those will not serialize correctly. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit

Re: Using a JPA Entity in the client

2011-06-30 Thread Cristiano
Hello Juan, thank you, did you find any bad side effect? Ops! I forgot to say I use EclipseLink and GWT 2.3.0. Cristiano On 30 Giu, 20:49, Juan Pablo Gardella wrote: > I use this approach and I preferr to RF, is more simple. But you need > something in the middle to pass jpa classes with pro

Re: GWT + UIBinder

2011-06-30 Thread Mike Dee
OK, I just started from scratch and got the same error. I first installed Eclipse 3.6.2 (J2EE edition), then installed WindowBuilder, and then the GWT and GAE plugins. I have a blank Eclipse workspace and tried to create a new project by selected File->New->Other. In the dialog I selected Window

Re: Using a JPA Entity in the client

2011-06-30 Thread Juan Pablo Gardella
I use this approach and I preferr to RF, is more simple. But you need something in the middle to pass jpa classes with proxies (if you use Hibernate). I use the approach mentioned in this thread

Using a JPA Entity in the client

2011-06-30 Thread Cristiano
Hello All, While searching for instructions and best practices for using GWT and JPA, I see everywhere guides suggesting to create 2 different bean classes, a JPA Entity for handling on the server-side the persistence on the database, and a DTO for exchange between the servlet and the browser... T

Re: Kiss Gergely csevegni szeretne

2011-06-30 Thread Juan Pablo Gardella
Can you post in english? 2011/6/29 Kiss Gergely > --- > > Kiss Gergely hatékonyabban szeretne kommunikálni Önnel a Google néhány > remek szolgáltatásával. > > Ha már használja a Gmail alkalmazást vagy a Google Csevegőt, kattints

Re: "without" instead of "with" for RequestFactory requests

2011-06-30 Thread Ryan McFall
Nope, not using editors. I haven't dove into that part of the data tools yet. Ryan On Jun 30, 2:16 pm, Jeff Larsen wrote: > Are you using editors? If so, you can do > >  fetchRequest.with(editorDriver.getPaths()); > > Check out the PersonEditorWorkflow.java in Dynatablerf for in context use. -

how to open a new window with output of other file in GWT

2011-06-30 Thread Ashish
Hi I am facing one problem I need to show a output of a file in a new window on onClickEvent. First File public class GTDWeb1 implements EntryPoint{ public void onModuleLoad() { -- - --- here is onClick event } } ---

Re: "without" instead of "with" for RequestFactory requests

2011-06-30 Thread Jeff Larsen
Are you using editors? If so, you can do fetchRequest.with(editorDriver.getPaths()); Check out the PersonEditorWorkflow.java in Dynatablerf for in context use. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on

Re: Re : Problem with MySQL connection

2011-06-30 Thread devel
Thanks for your replay. You are right. I didn't thought about that. I now run it on Tomcat. Are there otherways just to exclude GAE and switch to another server, but still having the same integration? Is there a good howto available how to use tomcat or others instead of the internal jetty server?

Re: GWT Modules

2011-06-30 Thread Daniel Mauricio Patino León
Nice answer, Thank you Ryan. I will do some refactor since i think its better dev into Modules than One BIG Module What do you think about Modules in GWT, you desing your apps in Modules? 2011/6/30 Ryan McFall > I am pretty sure that part of the optimization the compiler does is to > only incl

Re: GWT Modules

2011-06-30 Thread Ryan McFall
I am pretty sure that part of the optimization the compiler does is to only include code in the generated .js file that is actually in use. Therefore, only implementations of the methods in modules A & B that are used by your Login module will be downloaded by the client. Ryan On Jun 30, 12:58 pm

How to open a new EntryPoint file from other EntryPoint file

2011-06-30 Thread Ashish
Hi I need your help. In my GWT project I have two module files like below.. First File public class GTDWeb1 implements EntryPoint{ public void onModuleLoad() { -- - --- here is onClick event } } Second File public class GTDWeb2 implemen

GWT Modules

2011-06-30 Thread Daniel Mauricio Patino León
Since i read the FAQ and features of GWT and i dindt see info about this, can someone please tell me how the modules works? I mean if i dev a Module Login whit a few clasess (Fast download just a few kb's) then i dev a Module A w/ arround 40 clasess (huge kb's) then i dev a Module B w/ arround 4

"without" instead of "with" for RequestFactory requests

2011-06-30 Thread Ryan McFall
Having just started developing with RequestFactory, I've found the requirement to use the "with" method to specify which nested proxies should be downloaded when a proxy or collection of proxies to be rather cumbersome. Even when I remember to call with, (which is rare, but hopefully that changes)

Dynamic CellTree

2011-06-30 Thread Stefan
Is it possible to have a dynamic CellTree? How does one go about adding and removing tree items from the cell tree? I have a hierarchical structure and I use the CellTree to represented. The CellTree is great since it supports cell editors, keyboard navigation, etc. There is no problem editing exi

Re: Where is downloadable GWT docs?

2011-06-30 Thread Eric Atkinson
That worked; thank you all for your generous advice. On Jun 30, 11:54 am, Isaac Truett wrote: > wget is a program typically found on Linux. There are Windows binaries > available as well. I believe David was suggesting that you use Google Search > to learn more about wget. > > On Thu, Jun 30, 201

How to push classes to be on client-side javascript

2011-06-30 Thread saurabh saurabh
Hi all, I am working on plugin/API for gwt, its basically a graphics library based on a JavaScript SVG library(raphael). I have a gwt-wrapper(Raphaelgwt) for this JS library.The JS library is using closure pattern i.e only one JS object is there for doing all the things(on client side) and

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Eugen Paraschiv
I understand. Validation is essential for something like GWT. Waiting for 2.4 then. Thanks for the quick replies. Eugen. On Jun 30, 2011 6:02 PM, "Nick Chalko" wrote: > On Thu, Jun 30, 2011 at 8:58 AM, Eugen Paraschiv wrote: > >> Saw it there. Ok so until 2.4 what is the recommended way of doing >

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Nick Chalko
On Thu, Jun 30, 2011 at 8:58 AM, Eugen Paraschiv wrote: > Saw it there. Ok so until 2.4 what is the recommended way of doing > validation? > > Not supported on the client. And in 2.4 is still "experimental", it is my 20% project, I hope to finish it this summer. -- You received this message be

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Eugen Paraschiv
Saw it there. Ok so until 2.4 what is the recommended way of doing validation? On Jun 30, 2011 5:55 PM, "Nick Chalko" wrote: > On Thu, Jun 30, 2011 at 8:50 AM, Eugen Paraschiv wrote: > >> I have indeed added it to the classpath, but the HibernateValidator.gwt.xml >> module is nowhere to be found.

Re: Where is downloadable GWT docs?

2011-06-30 Thread Eric Atkinson
Thank you Isaac. On Jun 30, 11:54 am, Isaac Truett wrote: > wget is a program typically found on Linux. There are Windows binaries > available as well. I believe David was suggesting that you use Google Search > to learn more about wget. > > On Thu, Jun 30, 2011 at 11:53 AM, Eric Atkinson < > > >

Re: Where is downloadable GWT docs?

2011-06-30 Thread Isaac Truett
wget is a program typically found on Linux. There are Windows binaries available as well. I believe David was suggesting that you use Google Search to learn more about wget. On Thu, Jun 30, 2011 at 11:53 AM, Eric Atkinson < eric.atkin...@strategicinternationalsystems.com> wrote: > If you mean t

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Nick Chalko
On Thu, Jun 30, 2011 at 8:53 AM, Nick Chalko wrote: > > > On Thu, Jun 30, 2011 at 8:50 AM, Eugen Paraschiv wrote: > >> I have indeed added it to the classpath, but the >> HibernateValidator.gwt.xml module is nowhere to be found. >> Thanks for the feedback. >> > > > svn/trunk/user/src/org/hibernat

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Nick Chalko
On Thu, Jun 30, 2011 at 8:50 AM, Eugen Paraschiv wrote: > I have indeed added it to the classpath, but the HibernateValidator.gwt.xml > module is nowhere to be found. > Thanks for the feedback. > svn/trunk/user/src/org/hibernate/validator/HibernateValidator.gwt.xml ? -- You received this mess

Re: Where is downloadable GWT docs?

2011-06-30 Thread Eric Atkinson
Is this an FTP command? On Jun 29, 9:44 pm, David Chandler wrote: > Tried Google lately? ;-) > > /dmc > > On Wed, Jun 29, 2011 at 3:56 PM, Eric Atkinson < > > > > > > > > > > eric.atkin...@strategicinternationalsystems.com> wrote: > > Thank you, David, but what program runs that command? Browser

Re: Where is downloadable GWT docs?

2011-06-30 Thread Eric Atkinson
If you mean the google web search box or chrome browser search box; yes, I tried both of these with the above command after you mentioned it, and the reply was: http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=wget+-r+-p+-np+-k+http%3A%2F%2Fcode.google.com%2Fwebtoolkit%2Fdoc%2Flatest%2FDevGu

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Nick Chalko
On Thu, Jun 30, 2011 at 7:09 AM, Eugen Paraschiv wrote: > Adding the validation-api to the classpath now results in > javax.validation.ValidationException: Unable to find a default provider > I do have gwt-servlet on the classpath as well, but it seems that without > something like hibernate-valid

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Eugen Paraschiv
I have indeed added it to the classpath, but the HibernateValidator.gwt.xml module is nowhere to be found. Thanks for the feedback. Eugen. On Thu, Jun 30, 2011 at 6:47 PM, Nick Chalko wrote: > > > On Thu, Jun 30, 2011 at 7:09 AM, Eugen Paraschiv wrote: > >> Adding the validation-api to the class

Re: gwtc -optimize set to 0 causes out of memory error in ant build.

2011-06-30 Thread Jorel
Ok, well, after updating my OS (Mac OS X from 10.6.6 to 10.6.8), the issue disappeared. It is likely due to an updated java : from 1.6.0_22 to 1.6.0_26 On Jun 30, 9:01 am, Jorel wrote: > Hi.  I recently had an issue with the ant build for our GWT project in > which I got out of memory errors us

Re: Trouble with custom app build from the tutorial - Deferred binding failed

2011-06-30 Thread mm
I'd be interested in an answer too, since I also face this problem. Cheers, m. On Jun 26, 11:38 pm, marquies wrote: > Hi folks, > > I tried to build an app based on the GWT Tutorial. I use Spring STS > with GWT 2.3.0 > (com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508). I try to > impleme

Re: Latest GWT 2.4 Beta zip Download with HTML5 DnD Support fixed

2011-06-30 Thread Jeff Larsen
You can always build from trunk. http://code.google.com/webtoolkit/makinggwtbetter.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/WJ4_4R

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-06-30 Thread Eugen Paraschiv
Including the 2 depenencies without a validation provider doesn't seem right. You also need a provider, otherwise: javax.validation.ValidationException: Unable to find a default provider. Any ideas on how to solve this? (besides actually including a provider just to be able to run gwt). Thanks

In ListBox, how to you format first item Select... to italic and gray?

2011-06-30 Thread Bob
In ListBox, how to you format *Select*... to italic and gray? GWT 2.3, still learning... It is standard to have select visibile in the drop down box in italic and grayed out a bit. I presume Select is simply the first item added. myrListBox.addItem("Select..."); with other "real " items after

Re: R: Specifying cell width in cellTable

2011-06-30 Thread Luca
It seems GWT 2.3 CellTable creates this DOM structure ... ... ... ... ... and sets width in each col element... Try to do the same in your view code. (GwtQuery may be useful.) Cheers, Luca 2011/6/30 Issam > Thank you for your answer > But the problem is that I'm working by G

Re: Activities does not get de-registered..

2011-06-30 Thread Mauro Bertapelle
Well, actually that is the cause of the problem. Just remove the click handler in the onStop and onCancel otherwise disposed activities will continue to receive click events -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this g

Re: Help with building GWT from source - javax.validation.ConstraintValidation cannot be resolved

2011-06-30 Thread Eugen Paraschiv
Adding the validation-api to the classpath now results in javax.validation.ValidationException: Unable to find a default provider I do have gwt-servlet on the classpath as well, but it seems that without something like hibernate-validator (which is a provider), it doesn't find one. Any thoughts

gwtc -optimize set to 0 causes out of memory error in ant build.

2011-06-30 Thread Jorel
Hi. I recently had an issue with the ant build for our GWT project in which I got out of memory errors using -optimize 0. If I changed it to 1 (or higher) it worked fine. Does anyone know how optimize works? Why it might use more memory at 0 than other settings? -- You received this message b

Re: GWT / Javascript - Garbage Collection problem

2011-06-30 Thread Magno Machado
Use something like GWTP, it will take care of the url token and render the apropriated view On Thu, Jun 30, 2011 at 6:46 AM, onli4anks wrote: > I am working on a small GWT project. As i know, a GWT project can have > only one HTML page in it. So for loading different modules on my page, > I creat

Re: How to redirect HTML inside a dialogbox

2011-06-30 Thread jhulford
I think you may be able to put an iframe (gwt Frame) inside a DialogBox and have that work, I haven't done this myself but in theory I think it should work. On Jun 29, 12:05 pm, Oscar wrote: > Hi all, > > I'm new at GWT and I'm trying to create a dialogbox that shows a > website from an external

Re: Why won't the GWT 2.1 MVP example compile?

2011-06-30 Thread objectuser
Is this actually in the documentation somewhere, or only in the sample? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/aH5A-e0ARxAJ. To post to

Re: HasDataEditor + CellTable

2011-06-30 Thread gwtomni gwtomni
hello, can i have the source code of MyCellTable class ? is it implementing any other kind of interface to make the save() method working. thank you. -- 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: R: Specifying cell width in cellTable

2011-06-30 Thread Issam
Thank you for your answer But the problem is that I'm working by GWT 2.1 and I can't use the method cellTable.setColumnWidth(column, width, unit) So any help ? On 30 juin, 15:42, icamts wrote: > Hi, > for columns width have a look at > > http://code.google.com/intl/it-IT/webtoolkit/doc/latest/De

Re: Tree from xml??

2011-06-30 Thread jhulford
Check out this page, making sure your module's gwt.xml file has the correct XML inherits: http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsXML.html Also, note that for the parse method, the string you pass in there needs to be the actual XML document, not a path to its location.

R: Specifying cell width in cellTable

2011-06-30 Thread icamts
Hi, for columns width have a look at http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiCellTable.html#columnWidths For each input width you may need to provide your own version of the Inputcell: customize render method. Cheers, Luca -- You received this message because you are

GWT / Javascript - Garbage Collection problem

2011-06-30 Thread onli4anks
I am working on a small GWT project. As i know, a GWT project can have only one HTML page in it. So for loading different modules on my page, I create the object of the class responsible for loading the components of that module and call the required functions. I create these objects and load my mo

Latest GWT 2.4 Beta zip Download with HTML5 DnD Support fixed

2011-06-30 Thread PShenoy
HI, Is it possible to get the latest GWT 2.4 Beta Zip for download with issue http://gwt-code-reviews.appspot.com/1420811 for DragStartEvent, DragEvent, and DragEndEvent which are part of the HTML5 spec FIXED. I saw Labanca's 2011 IO tutorial on HTML 5 DnD feature in GWT and this is amazing, exac

Tree from xml??

2011-06-30 Thread swedeveloper
Hello my name is Jens and I am a beginner in GWT. I was trying to teach me this, but right now I'm stuck and need help! I'm trying to get a menu to work with XML via xmlparse and a for loop. What I think would be given does not seem to be there and it does not work when I compiled the file. There i

Specifying cell width in cellTable

2011-06-30 Thread Issam
I'm working with CellTable and Inuptcells and I would like to specify the width of each instance on my inputCell. Anyone has an idea? Thanks -- 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-t

Re: Activities does not get de-registered..

2011-06-30 Thread Thomas Broyer
On Thursday, June 30, 2011 2:06:22 PM UTC+2, El bassistos wrote: > > I am doing a small "test" application and I am using Activities and > Place but can't make it work as I expect.. > > I have 2 Views, Activities and Places. DefaultView calls Example1View > and Vice Versa .. > > In the Exampl

Re: Aw: Rebind

2011-06-30 Thread Thomas Broyer
For more information, see http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsDeferred.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-

why am i getting md5 checksum error for gwt sdk 2.3.0?

2011-06-30 Thread Elhanan
when i try to download the sdk from indigo update site, i get this error, why? -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send e

Aw: Rebind

2011-06-30 Thread Jens
Typically these classes are used during compilation of your GWT app. Most of them are generator classes and utility classes used by these generators. Generators are used to generate additional client side code for your app, e.g. code that implements your GWT RPC service if you have one. As comp

Activities does not get de-registered..

2011-06-30 Thread El bassistos
I am doing a small "test" application and I am using Activities and Place but can't make it work as I expect.. I have 2 Views, Activities and Places. DefaultView calls Example1View and Vice Versa .. In the Example1Activity I override mayStop() so that it returns a String asking if user wants to "

Re: Intercept basic authentication popup

2011-06-30 Thread khiem nguyen
i dont think u can do this at js in dom. browser handles this automatically when it sees the http-auth-required header before your js-code gets it. u'll need an anternative approach for this On Wed, Jun 29, 2011 at 7:52 PM, objectuser wrote: > I'm not an expert in this by any means (and certai

Rebind

2011-06-30 Thread ihsan ciftci
What is the purpose of com.google.user.rebind package? Are they server-side classes? I ask this because they contain references to BufferedImage. -- 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-w

Re: Fill a grid from my database

2011-06-30 Thread Gibson
I think what Khadija wants to use is a GXT datagrid,i managed to do so by extending my DTO class with the BeanModelTag interface, then wrote a function to load the objects i want to display in the grid. below is the code for loading the Grid. private Grid createBidGrid(){ final GWTService

Aw: Re: Downloading older GWT plugin versions

2011-06-30 Thread Jens
You can download older GWT SDKs from http://code.google.com/intl/de-DE/webtoolkit/versions.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/

Re: RequestFactory and JSNI

2011-06-30 Thread khiem nguyen
i had to do it manually with a lot of boilerplaite code (create a js-object & copy properties from proxy to it). would like to hear if someone has better approach On Thu, Jun 30, 2011 at 12:30 PM, Nachiket wrote: > Hi, > I have ran few tests and wrote Hello World style RequestFactory code > for u

Re: Downloading older GWT plugin versions

2011-06-30 Thread tharkun
That doesn't help me though, as I can't find the download on the web page any more. If I had the plugin/SDK installation package I could add it in that dialog, sure. But I can't download the files I need from the web site and I also can't select older versions from the eclipse update site from with

RequestFactory and JSNI

2011-06-30 Thread Nachiket
Hi, I have ran few tests and wrote Hello World style RequestFactory code for understanding. I am wondering, how we can pass EntityProxy to native Javascript (using JSNI) and setting changed values from native javascript to EntityProxy? Thanks, -- You received this message because you are subscri

  1   2   >