Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-27 Thread Y2i
I think where we have a complex view which has a number of cell widgets displaying different representation of same data, or maybe related data, instead of using setRowData, setRowCount on each and every one of them, we can use one AsyncDataProvider to provide data for them. Yes. And a

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread traneHead
Confirming same behaviour on Mac: GWT Developer Plugin - Version: 1.0.9614 Chrome version 8.0.552.237 Will try the downgrade. -- 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: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread traneHead
Yepp, the downgrade fixed it. -- 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 email to

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread Mike.G
Chrome 8.0.552.237 has same problems too. -- 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 email to

SimplePager - changing page callback

2011-01-27 Thread Stephan T
I'd like to perform some operations when a user, by clicking left or right arrow in a SimplePager, changes page in a CellTable. Can't find any suitable callback-methods or methods to override on SimplePager or CellTable. Any suggestions? -- You received this message because you are subscribed

Re: BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-27 Thread Patrice De Saint Steban
Thanks Thomas, I haven't think to this solution, and it's a good solution. On Thu, Jan 27, 2011 at 00:11, Thomas Broyer t.bro...@gmail.com wrote: FWIW, we simply copied what they did in the Expenses sample, and we're happy with it: add a createEditorDriver in your view (that the presenter

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread kazuyoshi
I have the same problem. I installed the older version of plugin, this worked good for some time, but then, suddenly, it does not work again. I have uninstall and reinstall over and over again. I am using Windows 7, 32-bit. Chrome version 8.0.552.237 and 10.0.649.0. -- You received this message

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread thrivikram c
Hi All, I have the same problem. I install old version of GWT Developer Plugin. It working fine now Thanks ~V On Thu, Jan 27, 2011 at 3:03 PM, kazuyoshi finitefi...@gmail.com wrote: I have the same problem. I installed the older version of plugin, this worked good for some time, but then,

Re: Must getters and setters in an EntityProxy be a matched set?

2011-01-27 Thread Thomas Broyer
On Thursday, January 27, 2011 1:55:11 AM UTC+1, Eric Andresen wrote: I guess a better wording for my question is, are either of the following flows allowed? The goal is to create an object on the server side without persisting it, display its default values and edit them on the client

Re: Announcing GPE/GWT 2.2M1

2011-01-27 Thread Thomas Broyer
Fortunately: yes! (thanks to Robert Munteanu and Jeff Larsen) See https://groups.google.com/d/msg/google-gin/aIz0vfGZyFw/XfNTpUvVWYUJ and https://groups.google.com/d/msg/google-gin/cFIKn0lfV0c/6H-JgxKO5KEJ -- You received this message because you are subscribed to the Google Groups Google Web

Re: Announcing GPE/GWT 2.2M1

2011-01-27 Thread Thomas Broyer
When will it be released to Maven central? (or in other words, should I wait or deploy it myself to our local repo?) -- 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.

Re: dilemma in identifying correct Activities, Presenters and Views in New Google Group-like app

2011-01-27 Thread Thomas Broyer
IMO, it depends how connected and coupled you want your components. Having 3 display regions, you have very specialized and loosely coupled activities, and they have to communicate through events on the event bus. With a single display region, you have a more complex activity but its inner

Re: GWT with Hibernate and Oracle

2011-01-27 Thread Néstor Boscán
I'll send you my version: package hibernate; import java.beans.PropertyDescriptor; import java.io.InputStream; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import java.util.List; import

Re: Receiver.onViolation() is called several times

2011-01-27 Thread Thomas Broyer
That's because when there's an error or violation, the RequestContext is un-frozen and made reusable, but (obviously) not cleared. Given that Request#fire(Receiver) is equivalent to Request#to(Receiver)+Request#fire() (where Request#fire() is equivalent to RequestContext#fire()), what you're

Re: GWT with Hibernate and Oracle

2011-01-27 Thread Néstor Boscán
I found this one on the web: http://maherkilani.blogspot.com/2008/12/hibernate-proxy-cleaner.html Regards, Néstor Boscán On Thu, Jan 27, 2011 at 2:15 AM, Nagin Kothari naginkoth...@gmail.comwrote: Hi, Can you point to some link that provide sample code or utility to clean the Hibernate

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread traneHead
+1 on Mac latest Chrome 8 -- 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 email to

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread traneHead
...to the downgrade being a temporary fix, the problem with the new plugin re-appears after a couple of hours. -- 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

Re: Is it possible to pass parameters/data from Server to Client package?

2011-01-27 Thread Irene
Sorry for the delay! You were completely right, I used a return and changed the prototype definition of RPC functions (except Async one) to return a List of Strings and it worked. Thanks :D On Jan 21, 6:19 pm, Y2i yur...@gmail.com wrote: On Friday, January 21, 2011 8:42:39 AM UTC-8, Irene

Apache and Tomcat: Proxy, Caching and Compression configuration

2011-01-27 Thread P.G.Taboada
Hi there, it took me a while to get all pieces together so I wanted to share my configuration. I have an apache as a proxy, tomcat serving the app and lots of clients. So I wanted to setup compression and expiration headers properly. http://bit.ly/GwtApacheConfig Anyone with a better config?

Re: Cell Table Pager not showing rows in the table.

2011-01-27 Thread suersh babu
Thank a lot, because of ListDataProvider the page is not showing up. This is updated code, now the page for cell table works fine :) public class CellTableWithPager implements EntryPoint { CellTableSampleTable sampleCellTable = new CellTableSampleTable(); ListSampleTable

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-27 Thread John LaBanca
In general, use AsyncDataProvider/AbstractDataProvider/ListDataProvider when your data is dynamic or you support paging. The DataProviders handle RangeChangeEvents from CellTable and ensures that only the correct data is sent to the CellTable. Use CellTable#setRowData() when your data is static

Re: Must getters and setters in an EntityProxy be a matched set?

2011-01-27 Thread Eric Andresen
Thanks for the info, I had a feeling that the problem was something along those lines. I guess I can tweak the Proxy and make the Locator#Create method also call createAndInit, that should accomplish the same thing with the only real side effect being that the createAndInit is called twice.

Re: Announcing GPE/GWT 2.2M1

2011-01-27 Thread Mike.G
good news -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. For more

Re: GWT 2.1.1. + Deploy in Tomcat

2011-01-27 Thread Florian
can you plz specify what the problem is? Usual way of deploying for tomcat with eclipse(at least how i do it..) 1) Make sure you have all the libs that you referenced in your \war \WEB-INF\lib folder, for projects that you referenced in eclipse, do the same. 2) GWT compile 3) Zip the contents of

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread Zagfai
Amazing.. On Jan 27, 4:11 pm, traneHead david.tisel...@gmail.com wrote: Yepp, the downgrade fixed it. -- 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

Sending request with proxy created from other request ?

2011-01-27 Thread Mihail Lesikov
Hi, the situation is: @Service(value = PersonManager.class, locator = InjectingServiceLocator.class) public interface PersonRequest extends RequestContext { RequestVoid persist(PersonProxy personProxy); } PersonRequest firstRequest = requestfactory.getPersonRequest(); PersonRequest

Use hosted mode existing tomcat server and not with embadded jetty server

2011-01-27 Thread tarik.bts...@gmail.com
Hello all, I'm new gwt and i'm working in project which i create by using eclipse and architype of gwt-maven pluging. So my problem is how to use my existnig tomcat server to debug my application ? i made some researsh what i find is to add noServertrue/noServer in my gwt-maven pluging

Is there any sample application Login in gwt-ext?

2011-01-27 Thread dikky s
Dear All, i am new be for GWT,..i wanna try for make login that useing any database connection but there any sample that practicaly easy step by step, i have read from some e-book GWT and see some example but it difficult to implementation please help.. could any body or some body give me

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread Rod Bailey
OK - I confirm that downgrading the plugin version from 1.0.9614 to 1.0.9521 gets dev mode on Windows working again. But after a short time Chrome auto-updates the GWT plugin back to version 1.0.9614, and everything does back to not working. -- You received this message because you are

Re: Sending request with proxy created from other request ?

2011-01-27 Thread Mihail Lesikov
And when I say I would have expected an exception, I really mean an IllegalArgumentException(Attempting to edit an EntityProxy previously edited by another RequestContext) (AbstractRequestContext#addInvocation calls retainArg, which calls edit() on the proxy — or maybe there's a bug in

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread chl
I have the same Problem on Windows 7 64 Bit Chrome 8.0.552.237 GWT DMP Plugin (0.9.0) GWT Developer Plugin - Version: 1.0.9614 Is there already a fix. How can I get an older Version of the Plugin? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Windows 7 Chrome

2011-01-27 Thread chl
I have the same problem on Windows 7 64 bit since Today: GWT Developer Plugin - Version: 1.0.9614 Chrome 8.0.552.237 GWT DMP Plugin (0.9.0) Is there already a fix? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Receiver.onViolation() is called several times

2011-01-27 Thread Lazo Apostolovski
Receiver.onViolation is called several times when there are validation errors after each request. interface Driver extends RequestFactoryEditorDriverItemProxy, ItemEditor{} private ItemRequest request; public void edit(...){ ... request = requestFactory.itemRequest(); ... } public void

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread Zagfai
I use Win7 Ult and I also encounter this problem On Jan 27, 6:27 am, dilbert goran.stoj...@gmail.com wrote: I have seen something similar and posted an issue here:http://code.google.com/p/google-web-toolkit/issues/detail?id=5740 The conclusion was that it is a packaging bug in OpenSUSE. What

ClickableCell double click event (CellTable)

2011-01-27 Thread al
Hi, I want to know whether I can get the double click event if some one double click the cell? There a method onBrowserEvent where I just get single click when I get the type of the event (event.getType()). any workaround? thx la -- You received this message because you are subscribed to the

tool tip for tree nodes

2011-01-27 Thread mtweet
Hello, I want to have a tool tip for each of my tree nodes and leafs (implemented with GWT Tree grid), but tree node doesn't have a mouseOver or Hover event, is there any work around for this ? Regards Mtweet -- You received this message because you are subscribed to the Google Groups

When should the community expect some formal documentation on GWT 2.1.1

2011-01-27 Thread Katie
When should the community expect from some documentation on GWT 2.1.1.when 2.2 is released? I am not kidding, should we not expect the tutorials to be updated to include the 2.1.1 changes, or will we be waiting till Google I/O in May for 2.2 and the hope of some fresh documentation and

MultiSelectionModel with CellList

2011-01-27 Thread Florian
Hi, I have created a celll that extends AbstractCell. I want to use it with a CellList and a multiSelecitonModel. However, I cannot select more than one item. Is it possible to select more than one item in a CellList? With Ctrl + shift + click? I tried a lot of combinations... I read a lot about

Re: Sending request with proxy created from other request ?

2011-01-27 Thread Mihail Lesikov
I'll describe my problem better: The main goal of my task is a workflow of a contract signing. interface ContractProxy extends ValueProxy{ CustomerProxy getCutomer(); void setCustomer(CustomerProxy customer); AddressProxy getAddress(); void setAddress(AddressProxy address); ListItemProxy

Receiver.onViolation() is called several times

2011-01-27 Thread Lazo Apostolovski
Receiver.onViolation is called several times when there are validation errors after each request. interface Driver extends RequestFactoryEditorDriverItemProxy, ItemEditor{} private ItemRequest request; public void edit(...){ ... request = requestFactory.itemRequest(); ... }

How to make a rectangle selection tool like the gmaps drag 'n' zoom

2011-01-27 Thread LogicalTime
I could use a tip on how to get GWT to make that rectangle during the click and drag. Here is info on the tool I am referring to: http://www.watchingthenet.com/enable-use-googles-map-zoom-feature.html -- You received this message because you are subscribed to the Google Groups Google Web

Parent Url using iframes

2011-01-27 Thread Phalgun Guduthur
Hello Im developing a webpage which is loaded into a iframe on a different webpage. Now i want to know how to identify the url of the parent webpage where the iframe loads. ie, page A contains a iframe (which loads the page B). Now i need to find the url of A. Im developing the webpage B and i

Hover on tree Nodes

2011-01-27 Thread mtweet
Hello, I'm using smartgwt2.0 and i want to get some tool tip for each of my tree node, but it doesn't seem to work, here is the code i'm using : TreeGrid tg = new TreeGrid(); tg.setHoverMoveWithMouse(true); tg.setCanHover(true); tg.setShowHover(true); tg.setHoverOpacity(75);

Displaying Dynamic Images

2011-01-27 Thread MiTCh
Hi all, Im trying to diaplay images(charts) on my client that I'll be updating within some certain period at the server. I was trying to use RPC but im new to this and im getting lots of erros because my client cannnot find the images, probably because I don't know how to specify the URL well.

ZipException when moving project from mac to windows

2011-01-27 Thread taranaki
This is the exact error message I get: Starting Jetty on port [WARN] Failed startup of context com.google.gwt.dev.shell.jetty.JettyLauncher $WebAppContextWithReload@13bd574{/,C:\Users\sk\workspace\Project\war} java.util.zip.ZipException: error in opening zip file at

Re: BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-27 Thread nacho
Great -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. For more

Re: When should the community expect some formal documentation on GWT 2.1.1

2011-01-27 Thread Thomas Broyer
On Wednesday, January 26, 2011 4:47:48 PM UTC+1, Katie wrote: When should the community expect from some documentation on GWT 2.1.1.when 2.2 is released? I am not kidding, should we not expect the tutorials to be updated to include the 2.1.1 changes, or will we be waiting till

Re: Apache and Tomcat: Proxy, Caching and Compression configuration

2011-01-27 Thread Ed
Thanks. A few things: - ProxyPassReverse don't work with ajp... See: http://www.humboldt.co.uk/2009/02/the-mystery-of-proxypassreverse.html You can simple test it by performing a redirect on tomcat - Almost all browsers nowedays support gzip, so why not gzip them by default..?.. instead of

Re: GWT 2.1.1. + Deploy in Tomcat

2011-01-27 Thread Thomas Broyer
On Thursday, January 27, 2011 12:29:43 AM UTC+1, Florian wrote: can you plz specify what the problem is? Usual way of deploying for tomcat with eclipse(at least how i do it..) 1) Make sure you have all the libs that you referenced in your \war \WEB-INF\lib folder, for projects that you

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread Vermus
same thing On 27 янв, 08:25, Rod Bailey rodney.p.bai...@gmail.com wrote: OK - I confirm that downgrading the plugin version from 1.0.9614 to 1.0.9521 gets dev mode on Windows working again. But after a short time Chrome auto-updates the GWT plugin back to version 1.0.9614, and everything does

Re: Why GWT DevMode serialization is hundred times slower than production mode?.

2011-01-27 Thread Gursel Koca
Well, I run my test with gwt 1.7.1 , hosted mode serialization is slower than gwt 2.03 dev mode.. Well, I finally understand that serialization of objects except than String are very slow in devmode. Therefore , I had converted previously written space efficient serialization utiliy to GWT. By

Re: ClickableCell double click event (CellTable)

2011-01-27 Thread John LaBanca
Cells only receive events that are declared in AbstractCell#getConsumedEvents(). Override AbstractCell#getConsumedEvents() and have it return a Set that includes dblclick. Thanks, John LaBanca jlaba...@google.com On Thu, Jan 27, 2011 at 5:22 AM, al adnanlat...@live.com wrote: Hi, I want to

Re: MultiSelectionModel with CellList

2011-01-27 Thread John LaBanca
Multi-selection support (ctrl and shift) was added in GWT 2.1.1, and is enabled by default. Can you post more of your code where you initialize CellList? Are you aren't setting the KeyboardSelectionPolicy to BOUND_TO_SELECTION? That will limit selection to one item at a time. Thanks, John

Unable to load image, please help

2011-01-27 Thread Sednus
Hi, Im trying load an image from the server using RPC, the problem is that it always fails to load the image and throws the following error: com.google.gwt.user.client.rpc.StatusCodeException: 403 html head meta http-equiv=Content-Type content=text/html; charset=ISO-8859-1/ titleError 403

Re: Unable to open GWT designer in

2011-01-27 Thread Eric Clayberg
What version of GWT Designer are you using? I would recommend using GWT 2.1.1 and the latest version of GWT Designer. On Jan 26, 12:14 am, Rao Venu venu...@gmail.com wrote: Hi I am trying to open an entry point module file in the design view as

Re: CellTable: Highlight updated rows

2011-01-27 Thread Thomas
Yes, of course. Actually, what I didn't wrote before as I wanted to keep it simple was, that I have created my own implementation of a celltable (MyCellTableT extends AbstractHasDataT) which is similar to the GWT CellTable with a couple of changes. The best way to describe what I did is to look

Re: SimplePager - changing page callback

2011-01-27 Thread Y2i
- create a data provider - attach a cell table to the data provider - override the provider's onRangeChange() - (you don't have to override anything if you use ListDataProvider) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: gwt mvp sessions

2011-01-27 Thread Ernesto Reig
Hello again. It seems that I get stuck in every step... The thing is that I don´t know how to use Tomcat for the Development Mode instead of the embedded Jetty. I´ve been reading lots and lots of docs (including

Re: Announcing GPE/GWT 2.2M1

2011-01-27 Thread Y2i
thanks for the link Thomas! -- 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 email to

Re: gwt mvp sessions

2011-01-27 Thread Y2i
I also started from using Tomcat, but the debugging issue forced me to switch to Jetty. It took time to learn Jetty's specifics but it was worth it. -- 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: Sending request with proxy created from other request ?

2011-01-27 Thread Y2i
In theoryhttp://code.google.com/webtoolkit/doc/latest/DevGuideRequestFactory.html#relationships ContractProxy is the only object you need to edit(). Not sure that what applies to entity proxies also applies to value proxies (the documentation was written before value proxies were introduced,

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread SemperVivo
I am having the same issue. Please issue an immediate update that will fix the problem! Thank you. On 26 ian., 17:55, Jack Krooss jackkro...@gmail.com wrote: I just started having the same issue. It did not help to reinstall Chrome and the gwt dev plugin. On Jan 26, 12:54 pm, cri

Does Google Web Toolkit support CSS3 for IE 6,7,8 ?

2011-01-27 Thread jamshid asatillayev
I have tried couple of ways: I opened new question regarding this here http://stackoverflow.com/questions/4512401/how-to-use-html-component-file-htc-with-gwt-for-applying-css3 However I couldn't succeed. Thanks!!! -- You received this message because you are subscribed to the Google Groups

Image does neither load nor error

2011-01-27 Thread gex
Hi, I just tried to load an image in GWT. The code is the following: final Image image = new Image(); image.addLoadListener(new LoadListener() { public void onError(Widget sender) { Test.label.setText(An error occurred while loading.);

Re: GWT Development Mode - Safari and Opera

2011-01-27 Thread Chris Conroy
Ah, I read the OP's post too quickly. Our Safari plugin only supports OSX. On Wed, Jan 26, 2011 at 6:49 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, January 27, 2011 12:26:00 AM UTC+1, Chris Conroy wrote: We don't support Opera, but we do have a Safari plugin:

Re: How to override CellTable css

2011-01-27 Thread mike b
thanks to everyone who posted comments here. This has really helped me as well as I had problem styling the CellList. The same pattern works there as well. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Two parallel asynchronous rpc calls possible?

2011-01-27 Thread ghost23
hello, i have a service. I create an instance of it via GWT.create(MyService.class). Then i call a method on it, get the result, everything works nicely. Now i need to call two methods on that service more or less in parallel. I tried this (either using the same service instance or two distinct

Rendering Rich Text in a Cell

2011-01-27 Thread Thomas Lefort
I want to get Rich Text from a user, store it in a db, and retrieve it for display in a cellTable. Any recommended practice? I use a SafeHtmlCell which returns SafeHtmlUtils.fromTrustedString of my string, but I should really check the content before, any ideas/ libraries available for that? --

Re: Does Google Web Toolkit support CSS3 for IE 6,7,8 ?

2011-01-27 Thread Jeff Schwartz
The question isn't if GWT supports CSS3 for IE 6, 7, 8? The question rather is does IE 6, 7, 8 support CSS3? The answer is no. You will have to wait for IE 9 which is currently in beta. On Thu, Jan 27, 2011 at 8:52 AM, jamshid asatillayev jamshid.asatilla...@gmail.com wrote: I have tried

Simple history question

2011-01-27 Thread Navigateur
Before I delve, what's the most elegant way of handling the start page of your app? (i.e. going back to it?) Really my question is about the fact that for e.g. page2 you have created a history token with the String #page2... but when you press the back button after this, you go back to the first

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread joe kolba
Why not just make one call to a service and call different methods within your service object? You can put methods in your serviceImpl that are not RPC methods. On Thu, Jan 27, 2011 at 11:17 AM, ghost23 sven.bu...@googlemail.com wrote: hello, i have a service. I create an instance of it via

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread zixzigma
I think what you suggested, will result in Synchronous/Blocking calls. it won't be Parallel nor Asynchronous. Why not just make one call to a service and call different methods within your service object? You can put methods in your serviceImpl that are not RPC methods. -- You received this

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread Gal Dolber
Yes, it is possible, every rpc call is asyc, so if you call two rpc methods one after the other they'll be executed in parallel. In general it is better to batch the parallel methods in one rpc call. On Thu, Jan 27, 2011 at 1:41 PM, joe kolba joekolb...@gmail.com wrote: Why not just make one

Re: Simple history question

2011-01-27 Thread Ryan Mehregan
PlaceHistoryHandler, has a register method: public HandlerRegistration register(PlaceController placeController, EventBus eventBus, Place defaultPlace) { you probably have already defined some

Re: How to override CellTable css

2011-01-27 Thread Thomas Lefort
Great Thread. Thanks to the contributors. Makes me wonder if there are (other than Google) templates available out there for GWT? On Jan 27, 5:04 pm, mike b mbaker.t...@gmail.com wrote: thanks to everyone who posted comments here.  This has really helped me as well as I had problem styling the

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread Jeff Schwartz
I'm glad you qualified your comment with 'in general' which IMHO is still not true and I believe it really depends on your use case. For instance, if you are targeting App Engine you certainly want to leverage parallel async calls because of the quota system that is enforced on Google's APIs and

Re: Simple history question

2011-01-27 Thread Navigateur
Ah Places. This is only in GWT 2.1, right? Ok, how would I do it in a 2.0 app using History? And if I upgraded to 2.1, what are the basic advantages of using Places over History? Cheers, N On Jan 27, 4:54 pm, Ryan Mehregan ryan...@gmail.com wrote: PlaceHistoryHandler, has a register method:

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-27 Thread zixzigma
I have included the relevant code from Roo generated Expenses app here: http://pastebin.com/2FUbaVjY in onRangeChanged method, getView().asHasData().setRowData(range.getStart(), values); the code invokes setRowData on CellTable, and it makes use of onRangeChanged event, and in fact displays

App Deployment

2011-01-27 Thread Ross McKinnon
Hi there, Im building my final year University project using GWT. However, the application interacts with a MySQL hosted DB to retrieve information. Since the appengine does not support the MySQL jar files does anyone know any other places that offer free hosting of app's to allow me to test and

Re: Simple history question

2011-01-27 Thread Ryan Mehregan
Places use History mechanism behind the scenes. It is an abstraction layer which allows you to deal with History from a higher level point of view, and application oriented. in GWT applications, unlike other traditional web frameworks, we have only one .html page. therefore talking about page1,

Re: when to use AsyncDataProvider instead of CellTable.setRowData ?

2011-01-27 Thread Jeff Schwartz
I think the name DataProvider should give everyone a clue as to when and why to use one of its implementations - when you want to abstract out how data is provided to a user (meaning some sink of the data provided by the DataProvider). In addition to abstracting out how and where the data comes

Re: Announcing GPE/GWT 2.2M1

2011-01-27 Thread Jeff Chimene
On 01/26/2011 04:21 PM, Eric Clayberg wrote: Good news! Google Plugin for Eclipse 2.2M1 (including Google Web Toolkit 2.2M1) is ready for you to download and try out from the following update site URLs... Ok. I tried the Contact Support feature after a WindowBuilder internal error. Is that

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread Gal Dolber
Yes, the in general was specifically for appengine, many of my high cpu request are generally batch rpcs. But outside of appengine I've seen great results of batching rpcs. Best On Thu, Jan 27, 2011 at 2:01 PM, Jeff Schwartz jefftschwa...@gmail.comwrote: I'm glad you qualified your comment

Re: App Deployment

2011-01-27 Thread Ryan Mehregan
Amazon offers many Cloud based database related solutions. Amazon RDS (Relational Database Service) is what you need. http://aws.amazon.com/rds/ Amazon RDS gives you access to the full capabilities of a familiar MySQL database. This means the code, applications, and tools you already use today

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread Jeff Schwartz
Actually the benefit can be just as great when targeting traditional web servers, especially when there is high contention due to long running requests which block new requests from getting serviced. Breaking up the long running tasks into smaller atomic units of work that can run in parallel and

generator , JClassType - get fields declaring values

2011-01-27 Thread Jozef Môstka
Hi All, I need get declaring value from object properities Like: class Foo{ public String[] properityString = String[2]; public int properityint = 50; } I need to know that the property properityint has a value of 5 , and property properityString has 2 empty elements. I know get only

Re: RequestFactory and Client side Caching

2011-01-27 Thread zixzigma
Thank You. I looked into ProxyStore and ProxySerializer. I can see we can put individual entityproxies in ProxyStore, and later retrieve it. This is great. - do you know if it is possible to put a List of proxies in the store, and later retrieve the list as a whole, instead of an individual

Re: gwt mvp sessions

2011-01-27 Thread Ernesto Reig
Thank you very much for your response. At the moment I´m studying jetty and I get to a very simple question: *¿What is or how can I know, the current Jetty version of the current GWT version?* Now I´m using 2.1.1 This is a very simple question that I cannot understand why in the world there´s no

OnViolation method doesnt show error message.

2011-01-27 Thread Lazo Apostolovski
When I execute the next code, and when onViolation() method is called, no error message is showed in the ValueBoxEditorDecorator. Any idea why? @UiField ValueBoxEditorDecoratorString itemName; public void onClick(){ ItemRequest request = requestFactory.ItemRequest(); ItemProxy

Re: gwt mvp sessions

2011-01-27 Thread Ernesto Reig
Ok. Now I´m configuring the application to authenticata against the embedded Jetty server wich comes with GWT. Please, correct me if I´m wrong: - I have to create a jetty-web.xml in WEB-INF of my gwt application with the following text: Configure class=org.mortbay.jetty.webapp.WebAppContext

Re: Rendering Rich Text in a Cell

2011-01-27 Thread Thomas Broyer
There's an HtmlSanitizerhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/safehtml/shared/HtmlSanitizer.htmlwith a simple implementationhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/safehtml/shared/SimpleHtmlSanitizer.html. HTH -- You received

Re: Apache and Tomcat: Proxy, Caching and Compression configuration

2011-01-27 Thread P.G.Taboada
Thanks a lot for your comments. I am trying not to take static resources out of tomcat as it would make deployment slightly more complicated, but I have it in mind as soon as I run into performance issues. I am struggling a little bit with the split points: although http headers are set to expire

Re: Simple history question

2011-01-27 Thread Thomas Broyer
On Thursday, January 27, 2011 5:32:52 PM UTC+1, Navigateur wrote: Before I delve, what's the most elegant way of handling the start page of your app? (i.e. going back to it?) Really my question is about the fact that for e.g. page2 you have created a history token with the String

Re: gwt mvp sessions

2011-01-27 Thread Thomas Broyer
On Thursday, January 27, 2011 7:49:01 PM UTC+1, ernesto.reig wrote: Ok. Now I´m configuring the application to authenticata against the embedded Jetty server wich comes with GWT. Please, correct me if I´m wrong: - I have to create a jetty-web.xml in WEB-INF of my gwt application with the

Re: Announcing GPE/GWT 2.2M1

2011-01-27 Thread Dave Laycock
Will the final release have feature parity with GWT Designer? It looks like Ext GWT and Smart GWT are not supported in this plugin. -- 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: App Deployment

2011-01-27 Thread Ross McKinnon
Hi Ryan, Thanks for your reply. I will keep this in mind. As the App will only be used by a couple of people, i do not think its worth investing in the hosting! However, if I become desperately stuck then I will have no option but to proceed with investment. Ross On Jan 27, 5:38 pm, Ryan

New to GWT, issues w/ Tutorial, Looking for Sample Project

2011-01-27 Thread Joshua O'Connor-Rose
Hi I'm Joshua in Chicago and I'm new, The stockwatcher tutorial threw me for a loop on this bit // Listen for keyboard events in the input box. newSymbolTextBox.addKeyPressHandler(new KeyPressHandler() { public void onKeyPress(KeyPressEvent event) { if (event.getCharCode()

Re: gwt mvp sessions

2011-01-27 Thread Y2i
Based on the below I assumed it's 6.1.23, this is what I'm using. find . -name *jetty* ./org.eclipse.equinox.http.jetty_2.0.0.v20100503.jar ./org.mortbay.jetty.serveradaptor_1.0.4 ./org.mortbay.jetty.serveradaptor_1.0.4/icons/jetty_tiny.gif

Re: Announcing GPE/GWT 2.2M1

2011-01-27 Thread Chris Ramsdale
We are looking at ways to have the Ext GWT and Smart GWT folks take over this portion of the GWT Designer. For 2.2 we will have an updated stand alone version that still has this support. -- Chris On Thu, Jan 27, 2011 at 2:30 PM, Dave Laycock dave.layc...@gmail.comwrote: Will the final release

Google Web Fonts

2011-01-27 Thread EMan
Has anyone successfully used this in a GWT project? http://code.google.com/apis/webfonts/docs/getting_started.html#Quick_Start I tried to add these fonts to some uiBinder elements, but I can't get it to work. What is the best way to get the font css files to link up? Thanks. -- You received

  1   2   >