Re: Aw: Re: Question about new activities on place changes

2011-06-27 Thread tanteanni
thx to all 3 of you! my very little example is now working (is there a place to upload examples? it is nice to understand activities and places without MVP) placeController.getWhere() is the essence that made it clear for me. thats the place the comparison uses with the place given to goTo,

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-27 Thread Zgouingo
Well, I still have my problem. I spent quite a lot of time on this. I can't understand why it's impossible to compile. If anyone has an idea, I would thank him/her for eternity +15 days. Thanks a lot. Nicolas On 17 juin, 13:17, Zgouingo zgoui...@gmail.com wrote: Hello everyone, I know there

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-27 Thread ashwin.desi...@gmail.com
Nicolas, The first this I can think of is in your module definition you have not included the path source path = server/ Your UserServiceImpl is defined in your server package but you don't have that included in the module. Try adding that. Regards Ashwin On Mon, Jun 27, 2011 at 12:12 PM,

Re: Facebook like Chat App with GWT

2011-06-27 Thread mram
Hello, I am also interested in this feature. I've started doing something with server events that notifies the client when something has changed... This could be interesting for you: de.novanic.eventservice.GWTEventService I hope this helps. If you improve something, please share it with the

Re: Facebook like Chat App with GWT

2011-06-27 Thread Jambi
Maybe you should check out the channel API from AppEngine. It works with web sockets and it´s very easy to use. You should make use of sockets because the server can notify the client if something new happened. The client doesn´t have to poll all the time. On 25 Jun., 22:23, gangurg gangurg

Re: custom event + event bubbling

2011-06-27 Thread Ashwin Desikan
You should be able to bubble custom events using the attachHandler and fireEvents method on a widget. I am still trying to conceive an example where you would need a custom event. Most of the widely used events for all widgets have handlers defined. I have not personally tried attaching a

Can the requestFactory framework be used in other clients (such as flex, dot.net etc..)

2011-06-27 Thread Elhanan
although request factory handles all the entities mess proxy, it binds you to gwt, if you try to use things like flex or sliverlight to access entities, you pretty much on your own. am i correct? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Facebook like Chat App with GWT

2011-06-27 Thread mram
Is there any channel API without AppEngine? On 27 jun, 10:34, Jambi michael.lukaszc...@googlemail.com wrote: Maybe you should check out the channel API from AppEngine. It works with web sockets and it´s very easy to use. You should make use of sockets because the server can notify the client

GWT uibinder: could not recognized image from dependent jar

2011-06-27 Thread July
I have a GWT project(called A), i'd like to package it as a jar and reuse it in my another project(called B). Everything almost fine except that my another project seem don't know the in Uibinder: in project A: ui:image field=createButton src=../../style/images/createButton.png / ...

Can an interface serve as proxy for more than one class in RequestFactory?

2011-06-27 Thread Ryan McFall
I have two domain objects that implement the same interface on the server, and a third class that contains a (heterogeneous) List of those objects. I need to be able to expose this list on the client side. The domain objects do not share a common super-class (they instead delegate the common

Re: Re: Re: How to call a rest web service from gwt mobile application

2011-06-27 Thread navin kumar
Thanks a lot jens . can u provide a sample code how to do that .. if i try to get the callback param in server side im getting null. Will that param send as callback=functionname? please suggest me Thank in advance -- You received this message because you are subscribed to the Google Groups

Fast way for email, phone input validation

2011-06-27 Thread mma
Hi there! I'm trying to implement input validation for email and phone fields. I'm struggling with gwt-validation framework. Is there any fast, simple way to do it? Thanks, Best regards -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Fast way for email, phone input validation

2011-06-27 Thread mohamed salah
salam there mohammad salah validate your phone create method validate your email --- // this method is email for examplem...@mm.com public static boolean isEmail(final String value) { boolean valid = true; if

Re: Don't follow how to put toolbar in RichTextAra

2011-06-27 Thread Bob
Thanks! I will give it a try! Bob -- 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/-/e520KYkLQSsJ. To post to this group, send email to

Re: Don't follow how to put toolbar in RichTextAra

2011-06-27 Thread mohamed salah
On Sat, Jun 25, 2011 at 2:49 AM, Ed ej19...@gmail.com wrote: Try this: // write the editable message Label header = new Label(Subject:); header.setSize(580px, 18px); myMessages.add(header); final TextBox messageSubject= new TextBox(); messageSubject.setSize(580px, 20px);

Re: GWT uibinder: could not recognized image from dependent jar

2011-06-27 Thread mohamed salah
On Mon, Jun 27, 2011 at 11:51 AM, July gsun...@gmail.com wrote: I have a GWT project(called A), i'd like to package it as a jar and reuse it in my another project(called B). Everything almost fine except that my another project seem don't know the in Uibinder: in project A: ui:image

Re: Fast way for email, phone input validation

2011-06-27 Thread marco . m . alves
Thanks! Sent from my BlackBerry® wireless device -Original Message- From: mohamed salah mohamedhasanshaks...@gmail.com Sender: google-web-toolkit@googlegroups.com Date: Mon, 27 Jun 2011 13:42:39 To: google-web-toolkit@googlegroups.com Reply-To: google-web-toolkit@googlegroups.com

Re: Fast way for email, phone input validation

2011-06-27 Thread mohamed salah
On Mon, Jun 27, 2011 at 1:53 PM, marco.m.al...@gmail.com wrote: ** Thanks! Sent from my BlackBerry® wireless device -- *From: * mohamed salah mohamedhasanshaks...@gmail.com *Sender: * google-web-toolkit@googlegroups.com *Date: *Mon, 27 Jun 2011 13:42:39 +0200

Re: FireFox 5.0

2011-06-27 Thread Thomas Broyer
Support for Linux only for now: http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Re: Re: How to call a rest web service from gwt mobile application

2011-06-27 Thread navin kumar
Hi jens I have tried the steps what you have given in the last post. I have modified the server code to check for the callback function name http://localhost:8081/LMS-WB/services/authenticate/saranraju/welcome1/?callback=jsoncallback if i hit the url server will send response as

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-27 Thread Kevin Jordan
The servlet entry should only affect hosted mode. This means you're somehow referencing the server-side class for your RPC service somewhere in your client-side code (which you shouldn't be). On Jun 17, 6:17 am, Zgouingo zgoui...@gmail.com wrote: Hello everyone, I know there has already been

Re: the life cycle of a request context?

2011-06-27 Thread Thomas Broyer
On Sunday, June 26, 2011 8:38:10 PM UTC+2, Elhanan wrote: it's just occured to me, that aside from the requestFactories on method of creating requestContextes i have no way of handling their resources, i mean assume that each service locator whould inject an Entity Manager instance into

Re: GWT uibinder: could not recognized image from dependent jar

2011-06-27 Thread July
Thank for reply, but i'm not sure it's an effective way, since i have to modify the files every time i want to deploy project B. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Datepicker with multiselect

2011-06-27 Thread Dmitry Tikhomirov
Hi Erik, Have you realese your multi-select DatePicker ? Thanks 17.05.2011, в 21:09, Erik Uzureau написал(а): :-) Ok great to hear. I'm a little tied up this week but I'll see about getting that process started next week at the latest Erik Uzureau France: +33.6.85.96.94.08 USA:

Re: Fast way for email, phone input validation

2011-06-27 Thread David Goodenough
On Monday 27 Jun 2011, mohamed salah wrote: salam there mohammad salah validate your phone create method validate your email --- // this method is email for examplem...@mm.com public static boolean isEmail(final String

Does GWTP (or GWTP-like functionality) ever make it to the SDK?

2011-06-27 Thread dagerber
I'm in the process of defining the internal client architecture of a larger application. Our application should have a lifetime of 10 years. I therefore try to avoid 3rd party libraries where ever possible to minimze the risk, that those libraries get abandoned. I will use gin and I really

Re: Does GWTP (or GWTP-like functionality) ever make it to the SDK?

2011-06-27 Thread Christian Goudreau
- will gwtp continue to exist? Yes - will gwtp be integrated into the SDK? I don't think so, there's a lot of tools out there made by Googler that aren't included in any Google products. - will there be a new, higher layer in the SDK, that abstracts

Re: Fast way for email, phone input validation

2011-06-27 Thread mohamed salah
-- salaam it ok this method *is only valid for US phone numbers. It takes no account of country codes or other international phone formats. but this format is US phone format ok Possible change your format Depending on the phone number isA for example (1) **public static final String

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

2011-06-27 Thread marquies
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 implement Making Remote Procedure Calls with an AsyncCallback. The problem I encounter on loading the build in server in developer mode

ScrollPanel scrollToBottom() not working as expected..

2011-06-27 Thread Amorgos
Hey, I'm having trouble getting ScrollPanel.scrollToBottom to work. It's not scrolling to the bottom of the panel. Here's an example snippet: FlexTable flexTable = new FlexTable(); // Add loads of rows to the flex table here.. ScrollPanel scrollPanel = new ScrollPanel(flexTable);

Grid Cell Widget Possible?

2011-06-27 Thread John Maitland
Does anyone have any ideas of how to create a cell based grid, i.e. a layout similar to the Grid widget? Many Thanks, John -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Incompatibility of Maps API

2011-06-27 Thread dharma teja
hi I am using gpe latest version with appengine(1.5) and gwt(2.4) updated libraries. I want to Implement Maps API in my application. But the existing map libraries are not supported by 2.4 Can some one suggest me a pair gwt-mapsapi and links that will work.. -- You received this message because

GWT RTL style sheet

2011-06-27 Thread ah_wakeel
i'm using GWT with RTL support i construct the main application skelton a a layerd pannels. in RTL the application suddenly give plank screen but the application works fine in LTR please help if any one intersted in help i can sed the sample code. -- You received this message because you are

Where is downloadable GWT docs?

2011-06-27 Thread Eric Atkinson
I have been able to download to docs for the Google App Engine (because I am not always online when coding and testing); however, I can't seem to find a way to download the docs for GWT (for the same reason). Is there a link to down the GWT docs, such as:

Problem with maps API

2011-06-27 Thread dharma teja
hi all, I am new to GWT and want to try maps using GWT . My stack trace is 23:34:16.179 [ERROR] [demogwtmaps] Uncaught exception escaped java.lang.ExceptionInInitializerError: null at com.google.gwt.maps.client.MapWidget.init(MapWidget.java:253) at

dynatablerf won't build

2011-06-27 Thread Mike Dee
Coming up to speed on GWT and looking at sample apps. Dynatablerf has compiler errors in referencing DataGrid. It looks to be imported from: com.google.gwt.user.cellview.client.DataGrid. However, when I look in gwt-user.jar, there is no such class. Any hints where I can get DataGrid? Thanks,

Basic Requestfactory Example

2011-06-27 Thread langlaufen.de
I have created a very simple requestfactory example. This example implements the four crud actions using requestfactory. You can download the example at: http://www.langlaufen.de/gwt-blog/downloads/RequestFactoryExampleI.zip For people who understand german, you can find further informations in

Problems with GWT on Tomcat

2011-06-27 Thread arne
hey, I have a problem with my gwt application on our tomcat server. This problem surfaced after we started using the request factory. Now we are using gwt 2.4 because we need some of the validation features that were just recently added. Using gwt in hosted mode works just fine. But a soon as a

Re: Drop file from the OS into a GWT application

2011-06-27 Thread John Maitland
Have a look at this session from Google I/O 2011 on HTML 5: http://www.google.com/events/io/2011/sessions/html5-showcase-for-web-developers-the-wow-and-the-how.html I'm not sure if this has native supported in GWT, but if not look at JSNI. John -- You received this message because you are

event.preventDefault() not working for right clicks

2011-06-27 Thread Jurjen van Geenen
Hi all, I'm trying to capture right-clicks on a Canvas, and prevent the browser's default context menu from showing up. The attached mouse button listeners are given below. I see the events being logged, but the browser's context menu is still showing in both Chrome 12 and FireFox 5.

Re: Changing GWT cursor position to a new position (x,y)

2011-06-27 Thread kfer38
It's possible on gxt, just a bloated version of gwt. http://www.sencha.com/forum/showthread.php?28401-Set-Cursor-Position -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Incompatibility of Maps API

2011-06-27 Thread Eric Ayers
Grab the release candidate of the Maps API for GWT here: http://code.google.com/p/gwt-google-apis/wiki/Downloads?tm=2 On Sun, Jun 26, 2011 at 6:21 PM, dharma teja dharmas...@gmail.com wrote: hi I am using gpe latest version with appengine(1.5) and gwt(2.4) updated libraries. I want to

Re: What are WEB-INF\deploy\module\symbolMaps and rpcPolicyManifest directories?

2011-06-27 Thread targumon
Faced the same issue. My project is built using Maven and the solution (workaround?) is through its configuration. I assume there are equivalent configurations for Ant and whatnot. plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId configuration

does com.google.gwt.event.shared.SimpleEventBus have a synchronization problem?

2011-06-27 Thread XuDong Wu
It use firingDepth and deferredDeltas to support adding and removing operations received during dispatch, but i guess it may not be carefully synchronized. in its core function. private H extends EventHandler void doFire(GwtEventH event, Object source) { try { firingDepth++;

Gwt Button Disable problem in Mozilla firefox and Chrome(cross browser)

2011-06-27 Thread somaldo
Hi Currently am working on the Gwt button disable in crossbrowser. In Internet explorer its working properly But in Mozilla firefox and Chrome the button is not disabled properly and whenever mouse over on the disabled button, button got focus( but clicking event function is not occuring) The

How to script GWT based application?

2011-06-27 Thread Dea Cristi
Hi, I have to script using LoadRunner this application that has the following request: 1. URL=https://{URL}/SODA/; 2. URL=https://{URL}/SODA/soda/ 4FBC253AFCD35766C998EB3737595AB5.cache.html 3. URL=https://{URL}/SODA/soda/auth; - Body: Body=6|0|6|https://{URL}/SODA/soda/|

Re: Gwt Button Disable problem in Mozilla firefox and Chrome(cross browser)

2011-06-27 Thread mohamed salah
- salaam this Solutions in not true --- final Button sendButton = new Button(Send); sendButton.setEnabled(false); Also i have tried the following thing. final Button sendButton = new

Re: Does GWTP (or GWTP-like functionality) ever make it to the SDK?

2011-06-27 Thread Jeffrey Chimene
On 6/27/2011 5:32 AM, dagerber wrote: I'm in the process of defining the internal client architecture of a larger application. Our application should have a lifetime of 10 years. I therefore try to avoid 3rd party libraries where ever possible to minimze the risk, that those libraries get

Any guide to make our generators cacheable?

2011-06-27 Thread Gal Dolber
I see the SupportsGeneratorResultCaching interface, but I am not sure what else I have to do to make my generators cacheable -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are subscribed to

Re: Can an interface serve as proxy for more than one class in RequestFactory?

2011-06-27 Thread Thomas Broyer
On Monday, June 27, 2011 12:40:05 PM UTC+2, Ryan McFall wrote: I have two domain objects that implement the same interface on the server, and a third class that contains a (heterogeneous) List of those objects. I need to be able to expose this list on the client side. The domain

Gwt Button Disable problem in Mozilla firefox and Chrome(cross browser)

2011-06-27 Thread somaldo
Hi Currently am working on the Gwt button disable in crossbrowser. In Internet explorer its working properly But in Mozilla firefox and Chrome the button is not disabled properly and whenever mouse over on the disabled button, button got focus( but clicking event function is not occuring) The

Re: Where is downloadable GWT docs?

2011-06-27 Thread Elhanan Maayan
as far as i know there are NO downloadable docs, there IS however an open issue about that, with a gagilion votes, i guess google is too busy being sued by oracle... On Sun, Jun 26, 2011 at 12:44 AM, Eric Atkinson eric.atkin...@strategicinternationalsystems.com wrote: I have been able to

Re: Where is downloadable GWT docs?

2011-06-27 Thread massimo malvestio
Obviously writing a simple doclet to generate a pdf is too difficult, or including a zip with the html version impossibile... On Mon, Jun 27, 2011 at 4:21 PM, Elhanan Maayan elh.mailg...@gmail.comwrote: as far as i know there are NO downloadable docs, there IS however an open issue about that,

Re: Where is downloadable GWT docs?

2011-06-27 Thread David Chandler
Hi Eric, We don't publish the GWT docs for offline browsing, but instead of manual copying, you can use wget -r -p -np -k http://code.google.com/webtoolkit/doc/latest/DevGuide.html That will pull all the developer guides for the latest release, and you can further check out the javadocs from

Re: Where is downloadable GWT docs?

2011-06-27 Thread Elhanan Maayan
ok, so you could at least place this snippet of info at the TOP of the devguide? On Mon, Jun 27, 2011 at 5:29 PM, David Chandler drfibona...@google.comwrote: Hi Eric, We don't publish the GWT docs for offline browsing, but instead of manual copying, you can use wget -r -p -np -k

Re: Re: Re: How to call a rest web service from gwt mobile application

2011-06-27 Thread navin kumar
thanks a lot jens i have successfully received the response fron the server. The response is javascriptobject of gwt. Is it possible to manipulate the script object if so please let me know the way thanks in advance -- You received this message because you are subscribed to the Google Groups

Re: Gwt Button Disable problem in Mozilla firefox and Chrome(cross browser)

2011-06-27 Thread somaldo
On Jun 27, 6:49 pm, mohamed salah mohamedhasanshaks...@gmail.com wrote: - salaam this Solutions in not true ---  final Button sendButton = new Button(Send);      

jsonify a peristable entity?

2011-06-27 Thread Elhanan
hi.. assume i wanna be client agnostic, meaning the client for gwt app maybe gwt client,flex/sliverlight what not. so i can't use requestFactory, and i need a standard wire protocol, so how about json? can i use AutoBean in a servlet like so:? final EntityManagerFactory emf =

Re: Gwt Button Disable problem in Mozilla firefox and Chrome(cross browser)

2011-06-27 Thread Thomas Broyer
The Button widget is a native button (i.e. a button), so I guess you must have an issue with CSS (and yes, Internet Explorer probably, once again, does things differently; mind you share which version you tested in? and if IE8 or IE9, in which document mode and browser mode?). Are you using a

Re: dynatablerf won't build

2011-06-27 Thread Mauro Bertapelle
Datagrid is not yet released, should be part of the upcoming 2.4 release AFAIK. Meanwhile you can find it in the trunk: http://code.google.com/p/google-web-toolkit/source/checkout -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: jsonify a peristable entity?

2011-06-27 Thread Thomas Broyer
I guess you could do so yes; best to try it out, to make sure. I just wonder why you aren't using a wrapper bean rather than a visitor, i.e. IEmployee abEmployee = F.employee(e); Unless Employee doesn't implement IEmployee? or you don't want to visit reference properties in this particular

Aw: Re: Aw: Re: Question about new activities on place changes

2011-06-27 Thread Jens
Oh yeah small typo in my MainActivityMapper example. It has to be: if(place instanceof XYZPlace) { this.lastActivity = new XYZActivity(place); return this.lastActivity; } else if() {.} . So its just implemented as a field that stores the activity. Nothing fancy ;-) -- J.

Re: Can an interface serve as proxy for more than one class in RequestFactory?

2011-06-27 Thread Ryan McFall
Thanks for the reply. I think you're right that there's no great solution to my problem. I've got it solved at the moment by creating a client side interface, and wrapper classes for the two proxies that both implement that client-side interface (basically mimicking the functionality of the

Request Factory: what causes IdFactory.isEntityType to fail

2011-06-27 Thread Ryan McFall
I have a call to RequestContext.create that is failing, and I can't figure out why. The error message that I'm getting indicates that the interface that I am passing to .create is not an EntityProxy: edu.hope.cs.surveys.dao.ISurveyResponseHeader is not an EntityProxy type However, I've verified

GWT integration to the cloud

2011-06-27 Thread Amit
Hi David, What we are trying to develop is GWT based enterprise application, to be deployed in the cloud. For such a product we need: 1. Tools for easy deployment to the cloud as well as monitoring and control the application while running in the cloud, something like what the Vmware

Re: GWT integration to the cloud

2011-06-27 Thread Amit
Hi David, What we are trying to develop is GWT based enterprise application, to be deployed in the cloud. For such a product we need: 1. Tools for easy deployment to the cloud as well as monitoring and control the application while running in the cloud, something like what the Vmware

Re: Request Factory: what causes IdFactory.isEntityType to fail

2011-06-27 Thread Ryan McFall
It appears that unless a proxy interface is reachable via a method in the RequestContext class, this error will occur. I suppose this makes sense, since otherwise the object will never come from the server nor be sent to it. I just hadn't gotten around to trying to persist the object, and was

Re: Any guide to make our generators cacheable?

2011-06-27 Thread David Chandler
Hi Gal, Perhaps you've been looking at http://gwt-code-reviews.appspot.com/1468804 This is still a work in progress. We're aiming for release and docs next quarter. /dmc On Mon, Jun 27, 2011 at 9:51 AM, Gal Dolber gal.dol...@gmail.com wrote: I see the SupportsGeneratorResultCaching

Re: jsonify a peristable entity?

2011-06-27 Thread Elhanan Maayan
i allready did, and it works, i just wanted to make sure. employee does implement IEmployee,i'm using the visitor becouse i wanted to avoid all the boiler code for set=get stuff, this way i have a generic class. my original intent was to use jpa's meta model api's and then dynamically call

Jetty 7

2011-06-27 Thread cri
Are there any plans to move GWTs embeded Jetty to version 7? Version 6 doesn't seem that well supported anymore. For example, the Jetty WTP Plugin (http://wiki.eclipse.org/Jetty_WTP_Plugin) doesn't support Jetty version 6. I use Jetty for a couple of Jersey servers that my GWT projects talk to and

UserService Nullpointer exception when using Tomcat

2011-06-27 Thread devel
Hi everybody, I'm new with GWT and actually experimenting with external servers. I need to write a web application that is running on an internal web server. For testing purposes I'm using Tomcat. I've experimented with the UserService of the App Engine which is working at while developing and

Re: Don't follow how to put toolbar in RichTextAra

2011-06-27 Thread objectuser
Under your Eclipse plugins, find the GWT 2.3 plugin. It sits in: gwt-2.3.0/samples/Showcase/src/com/google/gwt/sample/showcase/client/content/text -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: How to parse the response of GWT app?

2011-06-27 Thread Plumo
How about split the response string by comma , and extract the required indices. -- 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/-/3VexgHUHkQ0J.

Re: Apache Shiro or Spring Security??

2011-06-27 Thread objectuser
There are only a few things you need to do, actually. It's mostly around: 1. Creating a realm (probably by extending AuthorizingRealm) 2. Creating a filter (probably by extending AbstractShiroFilter). Alternatively, you can use their INI filter, which provides some DI-like things,

Re: FireFox 5.0

2011-06-27 Thread Hristo Sabev
Any suggestions when the windows release would be available? Thomas Broyer t.broyer@... writes: Support for Linux only for now: http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi -- You received this message because you are

Re: Problem with maps API

2011-06-27 Thread Eric Ayers
Try downloading the release candidate for gwt-maps. That should solve this problem. On Sun, Jun 26, 2011 at 2:12 PM, dharma teja dharmas...@gmail.com wrote: hi all, I am new to GWT and want to try maps using GWT . My stack trace is 23:34:16.179 [ERROR] [demogwtmaps] Uncaught exception

Re: How to add JUnit testing to an existing project in eclipse.

2011-06-27 Thread objectuser
I might be missing the essential point, but can't you just create another Java project for your tests, add the JUnit library, add your main project to it's build path, and then go about writing tests? -- You received this message because you are subscribed to the Google Groups Google Web

Re: Basic Requestfactory Example

2011-06-27 Thread khiem nguyen
h) Eie *Entity(Domain)-Klasse* m u s sfolgende drei Methoden implementiert haben: - *public Long getId() {...}* - *public Integer getVersion() {...}* - *public static Person findPerson(Long id) {...}* the requirement for static findX() is not required anymore you can use a

Re: Fast way for email, phone input validation

2011-06-27 Thread Marco Alves
Thanks for the note. On Mon, Jun 27, 2011 at 1:31 PM, David Goodenough david.goodeno...@btconnect.com wrote: On Monday 27 Jun 2011, mohamed salah wrote: salam there mohammad salah validate your phone create method validate your email

Re: POJO to JSON

2011-06-27 Thread obesga
Hello, thanks for the help ! I'll try with Pitiri, I seems the most direct solution to my needs. In server-side, I'll use GSON to convert from POJO to JSON, as I think Pitiri is only for client-side use (all google code, a little lock-in??) I want to combine it with GWTQUERY and GWTQUERY-IU

Re: Jetty 7

2011-06-27 Thread Thomas Broyer
The embedded Jetty should only be taken for what it's for: a simple servlet container. It's only meant to run servlets, you shouldn't even care whether it's Jetty or Tomcat. If you feel the need to be consistent, and run Jetty 6 because of that, I'd say you have a problem: you should use an

Re: FireFox 5.0

2011-06-27 Thread Thomas Broyer
I think it should be included now, along with OSX support, starting with r10402 a few hours ago. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: FireFox 5.0

2011-06-27 Thread Chris Conroy
The production update URL just went live :-) You should get an auto-update shortly, or you can manually grab the plugin from http://gwt.google.com/missing-plugin/MissingPlugin.html I'll note that Mozilla didn't have an OSX 64 bit SDK released until this morning, and that was a blocker for our

How to use RequestFactory .with for self referencing entities.

2011-06-27 Thread Kathiravan Tamilvanan
All, I am trying to retrieve an entity graph using request factory using .with and the entities are self referencing. For example, I have got Version entity and each version has a parent version. I am trying to do the following to get the parentVersion .with(parentVersion). The issue i get

Re: FireFox 5.0

2011-06-27 Thread ialpert
The production update URL just went live :-) You should get an auto-update Excellent! Any insite into Chrome's slowness with the plugin (or should i post a new discussion thread)? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

.setVisible(true); // I can't see what I am missing

2011-06-27 Thread RRRaney
Hello, I would like to figure out how to build my entire container before I show it. I have this example to help explain and work with. This builds the container as I would like (if I remove the visibility:hidden). With the example as is it never shows the ButtonContainer, just sits there as

Re: .setVisible(true); // I can't see what I am missing

2011-06-27 Thread Alisson Prestes
The CSS attribute that you must declare is display instead of visibility. This is the attribute that the setVisible method affects. #ButtonContainer { display: none; } Alisson Prestes www.google.com/profiles/javalisson On Mon, Jun 27, 2011 at 9:55 PM, RRRaney rrrsyst...@gmail.com wrote:

Re: FireFox 5.0

2011-06-27 Thread Chris Conroy
Please discuss that on a separate thread. Short answer: there is some progress being made on a couple of fronts, but no real performance improvements to speak of yet. On Mon, Jun 27, 2011 at 8:48 PM, ialpert ialp...@gmail.com wrote: The production update URL just went live :-) You should get

GPE Support for m2e 1.0

2011-06-27 Thread youngm
With Indigo there as been released a new version of m2e 1.0. It appears that GPE 3.7 doesn't work with this version of m2e (auto configure GWT SDK, etc.) Are there plans to support m2e 1.0 fairly soon? Mike -- You received this message because you are subscribed to the Google Groups Google

how to implement Datediff ex. x hours ago

2011-06-27 Thread scorpion
Hi All, Facebook implements this well on its site. Ex. comments will show 5 minutes ago. Also if you stick on the page, this keeps updating. ex. if you stay on the page for next 5 minutes, you would see that move to 6 minutes ago, 7 minutes ago etc. I think it could be a small widget which

Configurable path for CSS and Resources

2011-06-27 Thread Foermchen82
Hello, I want to build a webapplication with different themes. I don't want to load the theme dynamicly. I have the following structure in my mind: I create the following file-structure: -WAR +Themes +Theme1 -ApplicationStyle.css +Images -BackgroundImage.png

Re: .setVisible(true); // I can't see what I am missing

2011-06-27 Thread David Chandler
The implementation of RootPanel.setVisible() uses the style attribute display, which is orthogonal to visibility:hidden. public static native void setVisible(Element elem, boolean visible) /*-{ elem.style.display = visible ? '' : 'none'; }-*/; Best form is to control visibility

Re: How to use RequestFactory .with for self referencing entities.

2011-06-27 Thread Ashwin Desikan
Try .with(parentVersion,parentVersion.parentVersion) Thanks Ashwin Sent from my iPhone On Jun 28, 2011, at 5:45 AM, Kathiravan Tamilvanan kat...@gmail.com wrote: All, I am trying to retrieve an entity graph using request factory using .with and the entities are self referencing. For

Re: .setVisible(true); // I can't see what I am missing

2011-06-27 Thread t.dave
.setVisible(true); // I can't see what I am missing - enjoyed the pun. :) -- 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

Re: Jetty 7

2011-06-27 Thread Elhanan Maayan
can this embedded jetty be used with PersistentUnit servlet injections ? On Tue, Jun 28, 2011 at 2:05 AM, Thomas Broyer t.bro...@gmail.com wrote: The embedded Jetty should only be taken for what it's for: a simple servlet container. It's only meant to run servlets, you shouldn't even care

Re: POJO to JSON

2011-06-27 Thread Elhanan Maayan
how can you automate writing proxies? in regards to deserliziing why not use the solution i wrote before, get a string, turn it to autobean and then use the visitor pattern with ReflectionHelper to copy data autobean to the bean? On Fri, Jun 24, 2011 at 4:34 PM, Thomas Broyer t.bro...@gmail.com

Re: POJO to JSON

2011-06-27 Thread Elhanan Maayan
in regards to to re-using pojo's that may sound like a good idea in the begining (hell, i like it myself) however bare in mind that your'e restricting yourself to the jre emulation limitations on the client side, meaning you won't be able to use any cross-cutting domain services (like

Re: Aw: Re: Aw: Re: Question about new activities on place changes

2011-06-27 Thread tanteanni
thx that's realy nice - on first sight much better than filtering/caching/overriding equal just to get the same as before. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

[gwt-contrib] Re: Removes .apt_generated from gwt-user classpath. Since Annotation Processor (issue1466807)

2011-06-27 Thread zundel
updated readme http://gwt-code-reviews.appspot.com/1466807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10400 committed - Make manual retries also append parameters so that failed downloads ar...

2011-06-27 Thread codesite-noreply
Revision: 10400 Author: gwt.mirror...@gmail.com Date: Mon Jun 27 08:07:28 2011 Log: Make manual retries also append parameters so that failed downloads are not cached Review by: zun...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10400 Modified:

  1   2   >