com.google.appengine can't be resolved

2010-12-20 Thread Ahmed Shoeib
now i want to use this bean class outside server package but i face problem during compilation with ( com.google.appengine ) that can't be resolved. @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = true) public class HTNews { @PrimaryKey

Serve image from blob store

2010-12-20 Thread Ahmed Shoeib
hi all, i want to get image from blobstore using this code // Serve image from blob store BlobKey blobKey = new BlobKey(req.getParameter(apikey)); blobstoreService.serve(blobKey, resp); and facing this problem HTTP ERROR 500 Problem accessing /api/news/serve. Reason: WRITER Caused by:

Re: Last eclipse plugin update bugs

2010-12-20 Thread Gal Dolber
Had to split my projects in two... one for the main code and one for the tests :S. I still don't understand why the plugin's code isn't open source, I will love to put hands on it On Mon, Dec 20, 2010 at 5:01 AM, Thomas Broyer t.bro...@gmail.com wrote: Oh, you're right, it's not fixed in 1.4.1

Re: Eclipse setup, javax.validation missing and jsp syntax highlighting

2010-12-20 Thread -sowdri-
Thanks Steve! Indeed that solution works. As you rightly said, I did not use Maven for building the project :) -- 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

Re: issue with RequestFactory not finding a ValidatorFactory

2010-12-20 Thread -sowdri-
Even I was facing the same problem, thanks for the pointer! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

sub-editor for ListString

2010-12-20 Thread -sowdri-
Dear All, *Defining editor for Recipe with String id String name* class Recipe { String id; String name; // getters and setters } @Service(Recipe.class) interface RecipeProxy extends EntiryProxy { ... } public class RecipeEditor extends Composite implements EditorRecipeProxy {

Re: sub-editor for ListString

2010-12-20 Thread Thomas Broyer
Have a look at the com.google.gwt.editor.client.adapters.ListEditorhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/editor/client/adapters/ListEditor.htmlclass. And if you want to use a CellList (for instance), have a look at the HasDataEditor: // read-only version:

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread Efstathios Kalyvas
I have the same issue. I have stopped using dev mode and i reverted to standard mode. On Sun, Dec 19, 2010 at 1:56 AM, Jim Douglas jdou...@basis.com wrote: I see the same failure here. It looks like Chrome dev version 10.0.612.1 breaks GWT DevMode, but production mode seems to work ok.

Re: How to create Gmail contextual gadget using GWT?

2010-12-20 Thread Alexander
As I understand now, you should insert separate injection file for each Require tag if you have to add more than one. Simeon Ross: Ah right. I have the same structure but when I try to add more than one Require tag I get XML parsing errors On 3 December 2010 20:23, Alexander

Re: I've updated my blog article today

2010-12-20 Thread Jeff Schwartz
Hi Mathew, On Sun, Dec 19, 2010 at 5:55 PM, Matthew Hill matt2...@gmail.com wrote: Thanks for posting this. It's really my pleasure, Mathew. A suggestion for your app: please style the widgets rather than leaving them as default. Many of the GWT widgets are very bland and that's putting

Re: Exposing RequestContext methods to non-GWT clients.... (newbie question)...

2010-12-20 Thread Ramon Buckland
Hi Richard, You need to consider what protocol your clients are going to use the GWT-like interface with. That is, do yuou want the client to talk GWT ? if that is the case, they can just talk to the GWT Servlet However if it's SOAP, or REST or something else, you have to make that happen As an

textbox water mark

2010-12-20 Thread pieceovcake
Has anyone added a watermark to a textbox? On first view the textbox shows a message e.g. letting the user know what to enter into the textbox. Once the placed the cursor inside the text box the water mark vanishes. -- You received this message because you are subscribed to the Google

Re: textbox water mark

2010-12-20 Thread Max Jonas Werner
Hi pieceovcake, yes, we're using sth. like you've mentioned a lot in our application. It looks sth. like this: ... private TextArea _ta; ... _ta.setText(placeholder); _ta.setStyleName(textarea-placeholder); _ta.addFocusHandler(new FocusHandler() { @Override public void onFocus(final

GIN MVP 2.1 Example

2010-12-20 Thread Matthew Hill
Hi. Does anyone have a code sample of a basic GWT 2.1 MVP app which uses GIN? Ideally the example Hello Goodbye app which is posted in the MVP section. I ask this because I want to use GIN but I really have no idea where to start nor how exactly to set things up, and an example would go a

Re: Serve image from blob store

2010-12-20 Thread Matthew Hill
Try the Google App Engine group: https://groups.google.com/forum/#!forum/google-appengine or the GAE Java group. -- 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

Class.getName();

2010-12-20 Thread bconoly
Hey All, I'm having an issue trying to use Class.getName in my client side code. When I'm in dev mode it returns exactly what I want and everything works great. But after a compile Class.getName() ends up with something like Class$kSb or Class$aRb and I have no idea why. Does anyone happen to

Using PopupPanel in UIBinder

2010-12-20 Thread Marcin Misiewicz
Hi I'm trying to use PopupPanel declared in uibinder template. Template looks like this : !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:style

Re: textbox water mark

2010-12-20 Thread Thomas Broyer
It's called placeholder. If you don't have a requirement that it works in all browsers, then HTML5 has an attribute for that (which actually has its origins in WebKit, HTML5 is only standardizing it), called… placeholder! So you can use myTextBox.getElement().setPropertyString(placeholder,

Re: Class.getName();

2010-12-20 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/wiki/NoClassMetadataOptimization -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send

Re: GIN MVP 2.1 Example

2010-12-20 Thread dilbert
Try here: http://code.google.com/p/google-gin/source/browse/#svn%2Ftrunk%2Fsamples These are the official gin samples: Higher lower and simple -- 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: Using PopupPanel in UIBinder

2010-12-20 Thread Subhrajyoti Moitra
public SamplePopup() { logger.fine(Creating SamplePopup); * add(uiBinder.createAndBindUi(this));* } u have to add the widget to the panel. Thanks, Subhro. On Mon, Dec 20, 2010 at 8:30 PM, Marcin Misiewicz misq...@gmail.com wrote: Hi I'm trying to use

Re: Identify index in update() of CellList ValueUpdater

2010-12-20 Thread John LaBanca
Unfortunately not at the moment. CellTable uses a FieldUpdater, which has the row index and row object. We can add the same to CellList. Can you create an issue to track this? Thanks, John LaBanca jlaba...@google.com On Mon, Dec 20, 2010 at 5:39 AM, -sowdri- sow...@gmail.com wrote: The

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread Jim Douglas
...or temporarily switch to the stable channel. On Dec 20, 4:31 am, Efstathios Kalyvas savi...@gmail.com wrote: I have the same issue. I have stopped using dev mode and i reverted to standard mode. On Sun, Dec 19, 2010 at 1:56 AM, Jim Douglas jdou...@basis.com wrote: I see the same

Displaying 8000 Records in widget

2010-12-20 Thread salmon david
Hi All, we have a requirement, where we need to display 8000 records at once. as per our requirement we should not use any pagination or partial loading using scroll events. currently we are using EditorTreeGrid of GXT, it is taking long time to display those many records. even EditorTreeGrid is

Need IE 8 Plugin for GWT

2010-12-20 Thread Shriram
Hi, Can anyone give me GWT Plugin for IE 8?. Thanks Regards, A.K.Shriram -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email

Về: GWT 2.1 Video with Sample Code

2010-12-20 Thread My hiep Tran
- Thư gốc Từ: Ashton Thomas ash...@acrinta.com Đến: Google Web Toolkit google-web-toolkit@googlegroups.com Gửi ngày: 1:04:30, Chủ nhật, 19 tháng 12 2010 Chủ đề: GWT 2.1 Video with Sample Code I know I posted links to the sample code a while back, but I now have a video to go along

Re: GWT 2.1.1 is here!

2010-12-20 Thread jerome Thoma
Great news! Did I get it right though that I have to wait until a new version of the mojo GWT compiler plugin has been releases before I can use 2.1.1 with Maven? Greetings Jerome Thoma Software Engineer / VdL On Dec 17, 8:41 pm, David Chandler drfibona...@google.com wrote:

UiBinder or GWT Designer

2010-12-20 Thread junaidp
Hi , I would like to know the difference in UiBinder and GWT Designer like which one is better if i'm using GWT Designer for my interface and not using any java code for the interface ,will i still be requiring UiBinder. Will there be any benefit of UiBinder over GWT Designer . Thanks Regards

Does GWT is indexed by search engines? HOW?

2010-12-20 Thread mhewedy
Does GWT applications are indexed by Search Engines?? and HOW to accomplish that? 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-tool...@googlegroups.com. To unsubscribe from this

De-selecting a CellTable or CellView

2010-12-20 Thread Frank Mena
Looks like some of the behavior of CellTable and CellList has changed between v2.1.0 and 2.1.1. When you initially add data now, no item is selected. After any item is selected, there is no way to replace all the data in the table or list without it also selecting the first item. There is no

is it possible to set multiple columns using CellTree?

2010-12-20 Thread salmon david
Hi all, I am going to use CellTree. But i need to create multiple columns like name, age, phoneno etc. is it possible to set multiple columns with celltree? if possible, how to do that? please can u post code snippet for that? thanks in advance.. thanks, salmon -- You received this message

GWT 2.1.1 Value Object support

2010-12-20 Thread Frapas
In the Google GWT blog, the post about GWT 2.1.1 announcement says that the release 2.1.1 introduce the support of Value Object. What this mean ? Can someone point me to the relevant doc or java docs about this feature ? thanks ! -- You received this message because you are subscribed to the

Is GWT doing well on android phone like tmobile g2 ?

2010-12-20 Thread old5
For translating anywhere,im gonna buy a g2,but im sure if GWT is doing well on an android phone...Is screen big enough for that? THX for your replies~~ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

can you make POST with JsonpRequestBuilder ??

2010-12-20 Thread mightymightyblues
Hi all, I'm making use of this class to make some request with GET, but I need to make log in in a remote server, and I need to make a POST call with the password and user. How can I do such a think? Regards!! -- You received this message because you are subscribed to the Google Groups Google

Re: GWT 2.1.1 is here!

2010-12-20 Thread David Chandler
No need to wait. You can specify the GWT dependencies in the gwt-maven-plugin like this: plugin groupIdorg.codehaus.mojo/groupId artifactIdgwt-maven-plugin/artifactId version2.1.0-1/version dependencies dependency

Re: Something other than an int was returned from JSNI method

2010-12-20 Thread Chris Conroy
tracking this issue here: http://code.google.com/p/google-web-toolkit/issues/detail?id=5778 On Sun, Dec 19, 2010 at 11:58 AM, Simon Majou si...@majou.org wrote: Damn the bug is coming for chrome 10 and the plugin ... https://groups.google.com/d/topic/google-web-toolkit/1hcrVTxvOh0/discussion

Re: CellList Selection problem

2010-12-20 Thread Mark
That was it. There was a missing closing tag. Thanks! Mark -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Does GWT is indexed by search engines? HOW?

2010-12-20 Thread Matthew Hill
Use these techniques in conjunction with history tokens: http://code.google.com/web/ajaxcrawling/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread Thomas Broyer
Or temporarily switch to Firefox 3.x ;-) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: GWT 2.1.1 Value Object support

2010-12-20 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_1_1 that lists all the changes in requestFactory between 2.1.0 and 2.1.1. -- 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: Displaying 8000 Records in widget

2010-12-20 Thread Subhrajyoti Moitra
Try the cell widgets. like CellTree and/or CellTable. But 8000 records?? really ?? What mortal eyes can try to decipher from 8000 record at the same time? -:P Cheers, Subhro. On Mon, Dec 20, 2010 at 8:11 PM, salmon david salmondavid...@gmail.comwrote: Hi All, we have a requirement, where we

Re: UiBinder or GWT Designer

2010-12-20 Thread Thomas Broyer
UiBinder is a feature of GWT that generates Java code from XML files to describe user interfaces. GWT Designer is a developer tool that allows you to generate Java code * and/or* UiBinder XML using a *designer* (RAD) rather than typing it by hand in a text editor. -- You received this message

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread a...@mechnicality.com
Sadly, that doesn't work for me because I am developing a WebGL based app and that only works with Chrome or FF 4. I've reverted to an earlier nightly build until the issue is fixed. And, of course, I'm wondering when FF4 will be supported in GWT - but that's another story (and thread)

Re: textbox water mark

2010-12-20 Thread pieceovcake
html5 solution worked like a charm, 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

google maps api

2010-12-20 Thread pieceovcake
I'm using the google maps api to plot a point on a map. Is there anyway to display adsense ads based the location? -- 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.

Re: GIN MVP 2.1 Example

2010-12-20 Thread Matthew Hill
Thanks. I think I understand it a bit better now but an example of it being used in MVP would still be useful. -- 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

Re: GIN MVP 2.1 Example

2010-12-20 Thread Boris Lenzinger
Hi, Check this : http://code.google.com/p/google-web-toolkit/downloads/detail?name=Tutorial-Contacts.zipcan=2q= It is probably what you are looking for. Boris 2010/12/20 Matthew Hill matt2...@gmail.com Thanks. I think I understand it a bit better now but an example of it being used in MVP

Re: Class.getName();

2010-12-20 Thread bconoly
Thanks, that was it On Dec 20, 10:09 am, Thomas Broyer t.bro...@gmail.com wrote: Seehttp://code.google.com/p/google-web-toolkit/wiki/NoClassMetadataOptim... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: GIN MVP 2.1 Example

2010-12-20 Thread Matthew Hill
That doesn't use GIN. :( -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: GIN MVP 2.1 Example

2010-12-20 Thread dilbert
AFAIK there is nothing MVP specific in gin. Your Activities, Views, etc. are injected the same as any other objects. I forgot to mention earlier that some advanced gin techniques can be learned from the test cases found here:

Re: is it possible to set multiple columns using CellTree?

2010-12-20 Thread Subhrajyoti Moitra
You can use a CompositeCell ListHasCellNavTreeItem, ? hasCells=new ArrayListHasCellNavTreeItem,?(); //code to create the 2 columns. hasCells.add(checkBoxColumn); hasCells.add(mainTextCol); * CompositeCellNavTreeItem

Re: can you make POST with JsonpRequestBuilder ??

2010-12-20 Thread Kashif
I believe jsonp is using script injection and that technique is limited to only GET requests. Kashif On Dec 20, 9:49 am, mightymightyblues mightymightybl...@gmail.com wrote: Hi all, I'm making use of this class to make some request with GET, but I need to make log in in a remote server, and

FF4.0 DevMode [was: Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1]

2010-12-20 Thread John A. Tamplin
On Monday, December 20, 2010 11:44:11 AM UTC-5, alanmechy wrote: And, of course, I'm wondering when FF4 will be supported in GWT - but that's another story (and thread) entirely. In August I heard it was real soon now... The problem was that every new beta of FF4 broke the APIs we were

Re: FF4.0 DevMode [was: Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1]

2010-12-20 Thread a...@mechnicality.com
Hi John Thanks for that update - looking forward to seeing it all work. I also appreciate that its not an easy task! Regards Alan On 12/20/2010 11:30 AM, John A. Tamplin wrote: On Monday, December 20, 2010 11:44:11 AM UTC-5, alanmechy wrote: And, of course, I'm wondering when FF4

Re: textbox water mark

2010-12-20 Thread Max Jonas Werner
You're a lucky guy that you can use this feature. ;-) Cheers! Max -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

GWT 2.1.1 RequestFactory Problem

2010-12-20 Thread Daniel Simons
I am running into an issue with conversion from domain object to client object in RequestFactory whereby the domain class being returned is invalid. I have a domain Entity called Connection and under the certain conditions the return type is mypackage.server.domain.Connection_$$_javassist_1

Unable to Install TomCat!!

2010-12-20 Thread amarasat
I am following these steps now: http://code.google.com/webtoolkit/doc/trunk/DevGuideServerCommunication.html#DevGuideRemoteProcedureCalls Simple Example with Apache Tomcat My concern is i have downloaded apache-tomcat-6.0.29 and apache- tomcat-7.0.5. I am trying to install tomcat, whenever

Re: com.google.appengine can't be resolved

2010-12-20 Thread A. Stevko
The reason your class instances are not available outside of the app engine jvm is that they have been altered/instrumented by the persistence manager. See step 3 of this tutorial http://www.datanucleus.org/products/accessplatform_1_0/guides/jdo/tutorial.html

Handling sessions in gwt multipage application

2010-12-20 Thread Davor Peric
I'm new to gwt, and I need to handle sessions in the gwt multipage application I've built. I need to enable that the users stay logged in and the page language stays the same by navigating between pages. I've searched but couldn't find a good tutorail. Can someone give me some advice or a link to

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread funkforce
Same problem here. Is there a way to go back to old Chrome? Doesnt get it to work in FF 4 beta also. On Dec 20, 5:44 pm, a...@mechnicality.com a...@mechnicality.com wrote: Sadly, that doesn't work for me because I am developing a WebGL based app and that only works with Chrome or FF 4. I've

GWT 2.1.1 RequestFactory documentation

2010-12-20 Thread Andigator
On the bottom of the 2.1 official docs on RequestFactory, the conclusion says RequestFactory is the heart of the new Bindery features in GWT 2.1. In future articles, we'll look at integration with cell widgets, Editors, the event bus, and Activities and Places. Any word on the article about

How do you deal with dead EvenHandlers?

2010-12-20 Thread Jeff Schwartz
Hi, I am using the SimpleEventBus along with the GWTEvent in my application and I am wondering how one is supposed to deal with dead EventHandlers. For example, in my views I use numerous custom Composites that I've built. These Composites add themselves to the event bus via addHandler such as

Re: com.google.appengine can't be resolved

2010-12-20 Thread Ahmed Shoeib
the Error in using BlobKey that want to import com.google.appengine how can i solve it ? On Dec 20, 10:50 pm, A. Stevko andy.ste...@gmail.com wrote: The reason your class instances are not available outside of the app engine jvm is that they have been altered/instrumented by the persistence

Re: Serve image from blob store

2010-12-20 Thread Ahmed Shoeib
ok thanks On Dec 20, 4:25 pm, Matthew Hill matt2...@gmail.com wrote: Try the Google App Engine group: https://groups.google.com/forum/#!forum/google-appengine or the GAE Java group. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

RPC Get Requests

2010-12-20 Thread bconoly
Hey All, We're having issues with our apache servers, IE, and post requests currently and a solution that someone came up with was to change all GWT RPC requests in our apps to GET rather than POST requests. To be honest I haven't done a lot of research into this but I was wondering if anyone

Re: GWT 2.1.1 is here!

2010-12-20 Thread Andigator
David, thanks so much! I've been following trunk and the ValueProxy addition is invaluable. Any advice on how to handle paging with RequestFactory? When CellTable's onRangeChanged retrieves the next page of records, the example I saw just did a SQL limit. I need a handle on the full list of

Re: How do you deal with dead EvenHandlers?

2010-12-20 Thread Jeff Larsen
addHandler returns an interface HandlerRegistration. you'll notice a method in there removeHandler(). Call that and it will destroy the event from the event bus. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Title: EntityProxyChange not being called?

2010-12-20 Thread Richard Berger
Problem resolved. The issue was that I had declared two eventBus properties - and not noticed. So the real event bus wasn't getting any handlers assigned, so although the hasVersionChanged() was being called (and was returning true), the doFire method in SimpleEventBus did not have any handlers

Re: RPC Get Requests

2010-12-20 Thread George Georgovassilis
To be precise, you haven't done _any_ research ;-) Try searching this group with RPC get [1] [1] https://groups.google.com/group/google-web-toolkit/search?group=google-web-toolkitq=rpc+getqt_g=Search+this+group On Dec 20, 10:12 pm, bconoly bcon...@gmail.com wrote: Hey All,    We're having

Re: Trying to split deserialization process after RPC call

2010-12-20 Thread George Georgovassilis
Hello Damien, That is an uggly problem. Unfortunately I'm not too fluent on generators, but if you are willing to consider some alternatives there might be some: - DeRPC. It's not exactly over-documented, so you might have to do some searching but it's supposedly a lot faster than RPC while just

Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-20 Thread Richard Berger
Apologies in advance if I am not using the right terminology in describing my question. English is my first language. But COBOL was my first programming language :). I am investigating using GWT/GAE for an upcoming project and one of the requirements is that we provide an engine that will be

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread a...@mechnicality.com
Go to http://build.chromium.org/f/chromium/snapshots/chromium-rel-xp/ and find a snapshot that works for you. I'm currently using 66202, dated Nov 15 2010 Open the folder labeled 66202, download the zip file, extract it and then navigate to Chrome.exe and use it. Experience indicates that

Re: How do you deal with dead EvenHandlers?

2010-12-20 Thread Jeff Schwartz
Thanks, Jeff. Good name by the way:) I guess I should have mentioned that I am aware of the removeHandler method so I guess my question then really boils down to what happens if you don't call it? For example, suppose composite a has a reference to composite b and b calls addHandler for events

Re: Dev Mode Font Size != Production Mode Font Size

2010-12-20 Thread George Georgovassilis
Hello Jeff, Just checking: you havent't by accident enabled any zooming? Resetting the dev mode browser (Ctrl + 0) doesn't normalize the fonts back I guess? On Dec 17, 5:54 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: Yes,, I can. I will do so later. On Dec 17, 2010 10:22 AM, Chris Conroy

FileUpload Cell

2010-12-20 Thread Daniel Simons
Any suggestions for creating a FileUpload cell? It looks like it should be as simple as extending AbstractSafeHtmlCellString, then overriding the render method to contain an html constant input type=file/. Wanted to make sure I'm not leaving out anything. Daniel -- You received this message

GWT 2.1.1 RequestFactory Strange Exception

2010-12-20 Thread zixzigma
I am using GWT 2.1.1 new RequestFactory Service layer, but I keep getting exceptions instructing me to declare my Service methods static and in my domain(entity) classes. (instead of a separate service layer [the point of 2.1.1]) the formatted code for easy reading can be find here

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread Chris Conroy
Chrome checks the profile directory to figure out if it needs to start a new session or attach to an existing one. You should be fine having an instance of Chrome open with an instance of Chromium since they use different profiles. If you want to have multiple instances of Chrome or Chromium, then

Re: com.google.appengine can't be resolved

2010-12-20 Thread A. Stevko
Its not just BlobKey. Its also Key and every c om.google.appengine.api.datastore.* type. David C blogged his experience with this situation http://turbomanage.wordpress.com/2009/10/15/gwt-gae-and-the-balm-of-gilead/ This is a comparison between the various technologies.

Re: Trying to split deserialization process after RPC call

2010-12-20 Thread David Chandler
Following up on George's post, here's the DeRPC doc. You can find a little additional info by searching for DeRPC on the public issue tracker. DeRPC was created to help with large object graph serialization; however, DeRPC (NOT GWT-RPC) will likely be deprecated eventually in favor of

Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread a...@mechnicality.com
Thanks Chris On 12/20/2010 2:46 PM, Chris Conroy wrote: Chrome checks the profile directory to figure out if it needs to start a new session or attach to an existing one. You should be fine having an instance of Chrome open with an instance of Chromium since they use different profiles. If you

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-20 Thread zixzigma
I am interested in the very same thing. So far my questions have left unanswered. http://groups.google.com/group/google-web-toolkit/browse_thread/thread/b86693200c8f3179 You can find similar thread here: http://groups.google.com/group/gwt-platform/browse_thread/thread/39bbc24842168f6a Based on

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-20 Thread Gal Dolber
You can manage to use gwt's serialization with rest. Checkout this post: http://timepedia.blogspot.com/2009/04/gwt-rpc-over-arbitrary-transports-uber.html On Mon, Dec 20, 2010 at 8:13 PM, zixzigma zixzi...@gmail.com wrote: I am interested in the very same thing. So far my questions have left

Re: why EventBus in start method of Activity in 2.1

2010-12-20 Thread Matthew Hill
So should we bother injecting an EventBus instance into the constructor or just use the instance provided by the start method? -- 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: Using PopupPanel in UIBinder

2010-12-20 Thread Marcin Misiewicz
Thanks for the advice. But it would work well if the root element in the ui.xml was g:FlowPanel but I want it to be g:PopupPanel. In the meantime I have found what was wrong. UiFactory method thatsMe must declare PopupPanel as a return type not the SamplePopup type. When I changed this line it

Re: FileUpload Cell

2010-12-20 Thread a...@mechnicality.com
Hi Daniel Ok, I may be telling you something that you've already taken care of, but you did ask... I realize that you may be wrapping the whole thing inside a form, but I'm just reminding you that you can only upload files under the following conditions: 1. the input type='file' is contained

Re: GWT 2.1.1 RequestFactory Strange Exception

2010-12-20 Thread zixzigma
tracked down the problem, it has to do with validation: RequestFactoryInterfaceValidator this validation fails: RequestFactoryInterfaceValidator v = new RequestFactoryInterfaceValidator( logger, new RequestFactoryInterfaceValidator.

Re: Identify index in update() of CellList ValueUpdater

2010-12-20 Thread -sowdri-
Thanks John. I've created an issue @ http://code.google.com/p/google-web-toolkit/issues/detail?id=5785 Looking forward for this issue to be solved asap. Thanks GWT Team! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

FileUpload - Widget - Not giving full path in FireFox

2010-12-20 Thread Sreekanth Nambiar
Hi, I know this is a security feature in firefox. I am trying to save the full path of a file in to database. Is there any hack with which i can get the full file path in firefox? Thanks Sreekanth -- You received this message because you are subscribed to the Google Groups Google

Re: FileUpload - Widget - Not giving full path in FireFox

2010-12-20 Thread Jim Douglas
As you said, it's a security feature in all current browsers; it wouldn't be a very useful security feature if you could hack around it. http://blogs.msdn.com/b/ie/archive/2009/03/20/rtm-platform-changes.aspx http://www.google.com/search?q=fakepath

GWT File Upload Widget with Ajax

2010-12-20 Thread Noor
Can the widget file upload that comes with GWT can perform ajax uploads -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

GWT 2.1.1 , HelloMVP (Google provide example illustrating Activities Places) : Compile error. Stacktrace enclosed.

2010-12-20 Thread karthik reddy
I am trying to compile the HelloMVP application available at http://code.google.com/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html . I did not make any changes to the code and just tried to compile it and was met with the following error. It basically says it cannot resolve

GWT 2.1.1 , HelloMVP (Google provided example illustrating Activities Places) : Compile error. Stacktrace enclosed.

2010-12-20 Thread karthik reddy
I am trying to compile the HelloMVP application available at http://code.google.com/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html . I did not make any changes to the code and just tried to compile it and was met with the following error. It basically says it cannot resolve

Re: GWT File Upload Widget with Ajax

2010-12-20 Thread Jim Douglas
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/cfe1a1feaa1b345d/935ce4db15ee537c? On Dec 20, 10:02 pm, Noor baken...@gmail.com wrote: Can the widget file upload that comes with GWT can perform ajax uploads -- You received this message because you are subscribed to the

Re: GWT 2.1.1 is here!

2010-12-20 Thread Jim Douglas
Not a big deal, but are there updated relnotes for 2.1.1? http://code.google.com/webtoolkit/release-notes.html On Dec 17, 11:41 am, David Chandler drfibona...@google.com wrote: http://googlewebtoolkit.blogspot.com/2010/12/gwt-211-is-now-available... -- David Chandler Developer Programs

Re: GWT 2.1.1 , HelloMVP (Google provided example illustrating Activities Places) : Compile error. Stacktrace enclosed.

2010-12-20 Thread zixzigma
make sure you have this: @WithTokenizers({HelloPlace.Tokenizer.class, GoodbyePlace.Tokenizer.class}) public interface AppPlaceHistoryMapper extends PlaceHistoryMapper { } also check the default Java Compiler for your project, make sure it is version 1.5 or higher -- You received this message

Re: GWT 2.1.1 is here!

2010-12-20 Thread zixzigma
http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_1_1 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

[gwt-contrib] Re: Comment on ImageBundleDesign in google-web-toolkit

2010-12-20 Thread codesite-noreply
Comment by osorioja...@gmail.com: hey folks! inst it deprecated? For more information: http://code.google.com/p/google-web-toolkit/wiki/ImageBundleDesign -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] A new wrapper to BidiFormatter whose methods return SafeHtml instead of String (issue1234801)

2010-12-20 Thread tomerigo
Reviewers: jlabanca, Description: A new wrapper to BidiFormatter whose methods return SafeHtml instead of String Please review this at http://gwt-code-reviews.appspot.com/1234801/show Affected files: M user/src/com/google/gwt/i18n/shared/BidiFormatter.java A

[gwt-contrib] Re: A new wrapper to BidiFormatter whose methods return SafeHtml instead of String (issue1234801)

2010-12-20 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1234801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Generator Result Caching implementation for RPC (issue1235801)

2010-12-20 Thread jbrosenberg
Reviewers: tobyr, zundel, Description: Generator Result Caching implementation for RPC Please review this at http://gwt-code-reviews.appspot.com/1235801/show Affected files: M user/src/com/google/gwt/rpc/rebind/RpcProxyCreator.java M

  1   2   >