i18n property file editor

2020-05-19 Thread Stevko
Back in the day, google had a nifty editor for i18n property files hosted at translate.google.com. They seemed to have culled it or something. Did it get relocated and have a life elsewhere? Perhaps there another variant? --Andy -- You received this message because you are subscribed to the

Re: GWT 2.9.0 release

2020-05-13 Thread Andy Stevko
bed to the Google Groups > "GWT Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to google-web-toolkit+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google

Re: Debugging question

2017-06-29 Thread Andy Stevko
name_0_g$ has the signature of an object member variable. Sounds like you have an initialization problem with one of your classes. On Jun 29, 2017 7:55 AM, "Harry Wagner" wrote: Some progress. The unresponsiveness is due to a breakpoint being taken due to an umbrella

Re: GST 2.8 Keyboard Handler Question

2017-02-01 Thread Stevko
I found this posting on SO that seems to cover your use case to cancel the event bubbling in js http://stackoverflow.com/q/214262/177567 -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails

Re: what is xml 'is' attribute

2016-04-04 Thread Andy Stevko
oup/google-web-toolkit. > For more options, visit https://groups.google.com/d/optout. > -- -- A. Stevko === "If everything seems under control, you're just not going fast enough." M. Andretti -- You received this message because you are subscribed to the Google Grou

Re: Are there any currently developed GWT Widget Libraries?

2016-01-20 Thread Andy Stevko
t@googlegroups.com. > Visit this group at https://groups.google.com/group/google-web-toolkit. > For more options, visit https://groups.google.com/d/optout. > -- -- A. Stevko === "If everything seems under control, you're just not going fast enough." M. Andretti -- You receive

request factory and pure js client

2014-11-25 Thread Andy Stevko
to reuse the server side code rather than rewriting it. -- -- Andy Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: How to setup a GWT project in Plesk on a virtual machine?

2014-09-25 Thread Andy Stevko
. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: GWT 2.2.0 does not serialize/deserialize basic Java types if not referenced explicitly

2014-09-15 Thread Andy Stevko
to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout. -- -- A. Stevko

Re: GWT 2.2.0 does not serialize/deserialize basic Java types if not referenced explicitly

2014-09-15 Thread Andy Stevko
P.S. Thomas is correct - you will be better off upgrading to Super Dev Mode rather than re-tooling to a Dev Mode which is reaching end of life. On Mon, Sep 15, 2014 at 9:11 AM, Andy Stevko andy.ste...@gmail.com wrote: I gotten around the problems with using Object in my async apis by defining

Re: [gwt-contrib] GWT 2.7 requiring Java7 for development - Action needed

2014-09-11 Thread Andy Stevko
+1 on moving to java 7 On Sep 11, 2014 10:50 AM, 'Daniel Kurka' via GWT Contributors google-web-toolkit-contributors@googlegroups.com wrote: Hi all, while bringing GSS support into GWT, I discovered that the closure styleheets compiler actually requires Java7. This means that we either have

how to define CSSResource for a hover pseudo selector

2014-07-29 Thread Stevko
I am having trouble defining the CssResource interface for the :hover pseudo selector on a class. .foo { ... } .foo:hover { ... } I tried using the InterfaceGenerator but it only spits out interface Hover extends CssResource { String foo(); } with or without the base selector. I need

Re: The First-Time loading issue of a deployed GWT app?

2014-07-16 Thread Andy Stevko
think you need to profile your scenario in depth to understand where and what to optimize. -- Andy stevko On Jul 14, 2014 8:34 PM, Tom henry...@gmail.com wrote: I deployed my app and I got this issue. The first time the app got loaded, it will show a blank white page for 5-7 second which

Re: reuse of private static variable

2014-06-29 Thread Andy Stevko
Make as many image instances as necessary. The browser will cache and reuse the src if it is identical. On Jun 28, 2014 5:33 AM, 'Leung' via Google Web Toolkit google-web-toolkit@googlegroups.com wrote: Then, if I need to use one copy of the image a few times or the same widget a few places,

Re: in GWT, can we manage Messages Constants (i18n) at Server as we manage at Client?

2014-03-07 Thread Andy Stevko
://groups.google.com/d/optout. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from

Re: GWT+Hibernate

2014-03-06 Thread Andy Stevko
to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out. -- -- A. Stevko

Re: MenuBar: How to open MenuItem in new tab/window?

2014-01-30 Thread Andy Stevko
://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google

Re: render() - a better way?

2014-01-11 Thread Andy Stevko
rendering logic. It should be at least as responsive, if just the diff from the before/after is calculated and applied. (See ReactJS). J On Friday, January 10, 2014 12:30:03 PM UTC-6, Stevko wrote: What you are describing is how gxt v2 worked. It was a nightmare to reconcile the two

Re: render() - a better way?

2014-01-10 Thread Andy Stevko
What you are describing is how gxt v2 worked. It was a nightmare to reconcile the two rendering methods. Also tightly coupling the various widgets and views into a single render call makes the whole less responsive. When I are attach something to the Dom, I expect it to render. On Jan 10, 2014

Re: GWT - Send a message from the server to the client?

2013-10-28 Thread Stevko
There are several ways I've managed to do push messages to the client: If you are using appengine, research the Channel api https://developers.google.com/appengine/docs/java/channel/ If you have access to an MQ server (like ActiveMQ), consider using a JMS/STOMP/WebSocket protocol stack

Re: GWT compilation performance

2013-08-15 Thread Andy Stevko
Using maven will not give you the performance gains you desire. Have you tried Super Dev Mode? Also you may get a better response rate if you limit the browser to Firefox and a single language... ie 1 permutation. On Aug 15, 2013 7:33 AM, David lexisnexis5...@gmail.com wrote: I have a huge GWT

Re: GWT and memory leaks

2013-06-19 Thread Andy Stevko
://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google

Re: if you start a new project...

2013-03-21 Thread Andy Stevko
candidate for common code with the client supporting JSR-303 Bean Validation. My favorite package for creating clean DTOs usable in both the client and server is Objectify for AppEngine. --Andy Stevko On Thu, Mar 21, 2013 at 12:52 AM, Igor Zubchenok i...@zubchenok.com wrote: Hi! If I start

Re: Facebook DIV not rendering on a GWT page

2013-03-21 Thread Andy Stevko
/groups/opt_out . -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from

Re: if you start a new project...

2013-03-21 Thread Andy Stevko
. On Thu, Mar 21, 2013 at 6:43 AM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, March 21, 2013 2:08:45 PM UTC+1, Stevko wrote: To be supported on the client, these need to be free of unsupported library references (like BigDecimal) and serialized instrumentation (like an ORM

Re: Facebook DIV not rendering on a GWT page

2013-03-21 Thread Andy Stevko
at 10:49 AM, Xybek xyb...@gmail.com wrote: On 03/21/2013 09:37 PM, Andy Stevko wrote: I assume you see it loading facebook's all.js because you see it being fetched and into the script element facebook-jssdk. I think the problem is that facebook's js library assumes the DOM is statically

[gwt-contrib] Re: Maven-ization Status

2013-03-17 Thread Andy Stevko
/groups/opt_out. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT comet in push server mode?

2013-02-12 Thread Andy Stevko
+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. For more options, visit https://groups.google.com/groups/opt_out. -- -- A. Stevko === If everything seems

Re: What is the best way to create multiple versions a GWT application for Desktop / Tablet vs Cell phones?

2013-02-12 Thread Andy Stevko
://groups.google.com/groups/opt_out. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: WebScokets GWT

2013-02-11 Thread Andy Stevko
/opt_out. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send

Re: Go from one module to another module

2013-02-09 Thread Andy Stevko
-web-toolkit?hl=en. For more options, visit https://groups.google.com/groups/opt_out. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: How to print a portion of the screen (like a view in AP) ?

2013-01-27 Thread Andy Stevko
://groups.google.com/groups/opt_out. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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

Re: GWT Reflection

2013-01-11 Thread Andy Stevko
I create a Command instance and pass that into the event handler On Jan 11, 2013 7:32 AM, Jens jens.nehlme...@gmail.com wrote: To mimic method invocation in GWT you need to generate code that handles all possible methods for a given class. A typical example that exists in GWT is

Re: Maintaining security in an additional servlet

2013-01-07 Thread Andy Stevko
@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just

Re: How to extend GWT Widgets and use them with Ui-Binder?

2013-01-03 Thread Andy Stevko
...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups

Re: How to select an entry in a Tree (highlight)?

2013-01-03 Thread Andy Stevko
options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web

Re: Center content of DockLayoutPanel North?

2013-01-03 Thread Andy Stevko
/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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

Re: image manipulation in core GWT

2012-12-21 Thread Stevko
Have you seen this simple slideshow from IO2011 written entirely in html/css http://html5slides.googlecode.com/svn/trunk/template/index.html#1 Write out html using GWT and letting CSS do the heavy lifting. On Friday, 21 December 2012 13:48:16 UTC-8, Aldin wrote: Hi guys, Is there widget in

Re: developers.google.com is down

2012-10-26 Thread Andy Stevko
. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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: GWT 2.5 RC2 Is Here!

2012-10-05 Thread Andy Stevko
Has anyone tried the 2.5rc2 release with an app that uses the GAE Channel api? On production servers and version 2.4, my app has a stable inbound messaging sink whereas on 2.5rc2 the very same software is getting bombarded with repeated inbound messages. -- Andy Stevko === If everything

Re: Future of GWT survey

2012-09-28 Thread Andy Stevko
Am I reading too much into the fact that the GWT survey ends on the Vaadin.com/gwt page? With Google pushing GWT into the wild, is https://developers.google.com/web-toolkit/ still the most central place for GWT development? -- -- A. Stevko === If everything seems under control, you're

Re: GWT Compilation Time Performance Improvement

2012-09-06 Thread Andy Stevko
-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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

Re: GWT Compilation Time Performance Improvement

2012-09-06 Thread Andy Stevko
Oh, and if you have to use an external device, use esata rather than usb. while usb has higher burst speeds, esata has much higher sustained transfer speeds. On Thu, Sep 6, 2012 at 3:35 PM, Andy Stevko andy.ste...@gmail.com wrote: Have you considered using a SSD instead of a HD? I've cut my

Re: GWT future

2012-08-08 Thread Andy Stevko
. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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: create project component

2012-06-05 Thread Andy Stevko
, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: Printing from GWT -- how to?

2012-06-01 Thread Stevko
This thread had a very nice class that prints any panel, div, etc http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/eea48bafbe8eed63?pli=1 On Jun 1, 11:59 am, Rob Tanner caspersg...@gmail.com wrote: I have a project where the request has been made that I add a print button

Re: DTO + GWT

2012-04-24 Thread Andy Stevko
to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-18 Thread Andy Stevko
With all the turn over and David Chandler moving to the Andriod team... Who are the Developer Relations person(s) working on the Web Toolkit product? -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message

Re: HTML5 Canvas in IE9

2012-04-11 Thread Andy Stevko
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 options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko

Re: GWT with a non-java server

2012-04-08 Thread Andy Stevko
. 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 options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko

Re: DatePicker next/prev month events

2012-04-07 Thread Andy Stevko
Yes, create a class in your own project src tree with the Google package name to access default scoped methods. On Apr 7, 2012 4:23 PM, Nikola Markovic dev.mercur...@gmail.com wrote: I'm not sure I understand you. Create a class inside a com.google.gwt.user.datepicker.client package, which is

Re: How to get page state

2012-03-28 Thread Andy Stevko
. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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

Re: GWT Performance : Good or Bad ?

2012-03-27 Thread Andy Stevko
but is really an optimization on the rendering engine because it doesn't have to do a lot of recalculations. --Stevko On Tue, Mar 27, 2012 at 7:12 AM, dhoffer dhoff...@gmail.com wrote: Regarding GXT I noticed that comparison website is using GXT 2.2.5 yet is comparing with new GWT 2.4, if making GWT

Re: GWT Performance : Good or Bad ?

2012-03-27 Thread Andy Stevko
to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control

how to specify the id to a span element with a ui:field using UI binder?

2012-03-19 Thread Stevko
I am using span id=mySpanId within my UI Binder ui.xml files along with the debugId I also use span ui:field=mySpan to identify dynamic elements available to the associated View. Adding both yields this error message -- Cannot declare id and ui:field on the same element Element(:26) Is there a

Re: GWT + MySql

2012-03-19 Thread Andy Stevko
/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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

Re: format dates in specific timezone

2011-09-22 Thread Stevko
I've been doing the same research deep dive and came up with this nugget of code final TimeZoneConstants timeZoneConstants = GWT.create(TimeZoneConstants.class); TimeZone usPacific = TimeZone.createTimeZone( TimeZoneInfo.buildTimeZoneData(timeZoneConstants.americaLosAngeles())); Date

how to prevent hosted mode on external production servers?

2011-09-20 Thread Stevko
Could it be as simple as removing the hosted.html file from the deployment? -- 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: User Login with GWT on Google App Engine

2011-08-08 Thread Andy Stevko
this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You

Re: RIP (Rich Internet Pages) instead RIA

2011-08-06 Thread Andy Stevko
...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google

Re: GWT Developer Job Openings

2011-07-10 Thread A. Stevko
to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message

Re: compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-28 Thread Stevko
Is there something that makes permutation 0 different than the 7 other permutation? How can I tell what is the difference? On Jun 9, 3:10 pm, A. Stevko andy.ste...@gmail.com wrote: I am getting this compiler error. Any tips on resolving it?    Compiling 8 permutations       Compiling

Re: compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-28 Thread Stevko
Seems to be the case - IBM and -localworkers does not mix well. Thanks Thomas for the tip on issue 4031 :) On Jun 28, 4:06 pm, Thomas Broyer t.bro...@gmail.com wrote: Are you using an IBM JVM?http://code.google.com/p/google-web-toolkit/issues/detail?id=4031 -- You received this message

Re: Eclipse hosted mode in Facebook iframe

2011-06-22 Thread A. Stevko
to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you

Re: How can I run a GWT application in full screen mode

2011-06-17 Thread A. Stevko
to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control

Re: Redirect to place

2011-06-09 Thread A. Stevko
+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed

compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-09 Thread A. Stevko
... Compiling permutation 1... Compile of permutations succeeded Linking into Link succeeded -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups

Re: Eample for MVP+EventBus+Presenter+Activity

2011-06-08 Thread A. Stevko
. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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: GWT and WebGL

2011-06-07 Thread A. Stevko
-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- 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

Re: Shortcomings in Places

2011-06-04 Thread A. Stevko
+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed

Re: Hosting for GWT projects

2011-06-02 Thread A. Stevko
this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You

Re: EMF Error

2011-06-01 Thread A. Stevko
at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Validation-api-1.0.0, Doesn't work

2011-05-25 Thread A. Stevko
@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast

Re: Validation-api-1.0.0, Doesn't work

2011-05-25 Thread A. Stevko
, A. Stevko andy.ste...@gmail.com wrote: Try adding gwt-servlet-deps.jar and gwt-servlet,jar to your build path. On Wed, May 25, 2011 at 10:06 AM, Adolfo Panizo Touzon adolfo.pan...@gmail.com wrote: user/javax and user/org/hibernate files ??? The libraries? 2011/5/25 MaximeMularz max

Re: How to edit a live project design in GWT

2011-05-25 Thread A. Stevko
-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you

Re: [gwt-contrib] Activities Places

2011-05-25 Thread A. Stevko
is given about correctness/completeness) -- http://groups.google.com/group/Google-Web-Toolkit-Contributors -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

CellList 2.3 javadoc typo

2011-05-23 Thread Stevko
The 2.3 GWT javadocs have a typo that can be easily remedied: http://google-web-toolkit.googlecode.com/svn/javadoc/2.3/com/google/gwt/user/cellview/client/CellList.html void setEmptyListMessage(SafeHtml html) Deprecated. as of GWT 2.3, use

adding code to RequestFactory Proxy

2011-05-23 Thread Stevko
I am using the web bindery requestfactory proxies successfully throughout a web app under development. One thing that I'm finding myself writing over and over are simple methods that define the logic for the proxy data fields. For example: class MeetingProxy extends EntityProxy { public Date

DatePicker bug - cannot pick May 30th or 31st 2011

2011-05-18 Thread Stevko
DatePicker does not allow picking of the last dates in months which span 6 calendar weeks. Using the default locale in which the week starts on Monday. This month's date picker (May 2011) does not show the last two days of the month - May 30th and 31st. « 2011 May » M T W

Re: DatePicker bug - cannot pick May 30th or 31st 2011

2011-05-18 Thread Stevko
/g:HTMLPanel On May 18, 10:00 am, Stevko andy.ste...@gmail.com wrote: DatePickerdoes not allow picking of the last dates in months which span 6 calendar weeks. Using the default locale in which the week starts on Monday. This month's date picker (May2011) does not show

Re: DatePicker bug - cannot pick May 30th or 31st 2011

2011-05-18 Thread Stevko
I suspect it has something to do with my widget only showing 5 rows instead of 6. The main differences between the Showcase and mine is that UiBinder is creating it and Editor is initializing it with a null value. I'm trying to get 2.3 Showcase to load in my 3.6.2 eclipse helios but the 3.4/3.5

Re: Empty Response From HTTP Request

2011-05-12 Thread A. Stevko
well on Windows. ---Stevko On Wed, May 11, 2011 at 3:14 PM, Nick Apperley napper...@gmail.com wrote: Using RequestBuilder I can successfully make a request to the Glassfish 3.1 server I have setup. The server delivers REST web services that involve HTTP GET and POST. Currently I am testing

Re: Empty Response From HTTP Request

2011-05-12 Thread A. Stevko
-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're

Re: UIBinder and Dreamweaver

2011-04-26 Thread A. Stevko
-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you

UIBinder and Dreamweaver

2011-04-25 Thread A. Stevko
such creative people into working with GWT's MVP, UiBinder, Cells, and other tools? If there some kind of plug-in that will allow them to treat my .ui.xml files like a dreamweaver template such that they can edit anything in an g:HTMLPanel/? -- -- A. Stevko === If everything seems under control

Re: View GWT RPC traffic

2011-04-15 Thread A. Stevko
to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because

Re: development/production mode - different paths to same file?

2011-04-07 Thread A. Stevko
. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google

Re: JDBC Connection on GWT

2011-04-06 Thread A. Stevko
://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Relative paths in files retrieved by RequestBuilder

2011-04-06 Thread A. Stevko
...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google

UIBinder style de-obfuscator

2011-03-29 Thread A. Stevko
{ content: faqA; font-style: italic; } -- -- Andrew Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: UIBinder style de-obfuscator

2011-03-29 Thread A. Stevko
#Levers_and_Knobs apply, particularly set-configuration-property name=CssResource.style value=pretty/ -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google

Re: Problem with JSNI

2011-03-27 Thread A. Stevko
://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: How to compile selectively or avoid compilation of inheriting/implementing classes?

2011-03-15 Thread A. Stevko
at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: how to post handle RequestFactory server warnings/errors?

2011-03-13 Thread A. Stevko
from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti

how to post handle RequestFactory server warnings/errors?

2011-03-11 Thread A. Stevko
the RuntimeExceptions. Is there a better way to do this? What exceptions should the DAO throw such that onViolation() or onFailure() report errors? How should the editor(s) handle and recover from the exception? -- -- A. Stevko === If everything seems under control, you're just not going fast

Re: help sending emails in GWT

2011-03-01 Thread A. Stevko
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 options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything

Re: help sending emails in GWT

2011-02-28 Thread A. Stevko
-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you

Re: Java Mail Provider

2011-02-10 Thread A. Stevko
this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: SSH + RMI in GWT

2011-02-09 Thread A. Stevko
are coding in java, the browser is really executing javascript. It relatively painless to wrap a js library with the JSNI wrapper and use them within your GWT app. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti On Fri, Feb 4, 2011 at 1:22

Re: Best Design Pattern for widgets

2011-01-07 Thread A. Stevko
. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- -- A. Stevko === If everything seems under control, you're just not going fast enough. M. Andretti -- You received this message because you are subscribed to the Google Groups

  1   2   >