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 Goog

Re: GWT 2.9.0 release

2020-05-13 Thread Andy Stevko
e because you are subscribed 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/

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 exception. I found this on

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 from

Re: what is xml 'is' attribute

2016-04-04 Thread Andy Stevko
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 Groups "GWT Users" group.

what is xml 'is' attribute

2016-04-04 Thread Stevko
While using the vaadin polymer showcase to seed my prototype, I've come across an unfamiliar uibinder construct: is='xxx' Is there documentation anywhere on this attribute? Searching for "is" attribute is impossible. Some excerpts showing the attribute from http://vaadin.github.io/gwt-polymer-e

Re: Are there any currently developed GWT Widget Libraries?

2016-01-20 Thread Andy Stevko
> 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 received this m

request factory and pure js client

2014-11-25 Thread Andy Stevko
ce 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&qu

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

2014-09-25 Thread Andy Stevko
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 Groups

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 wrote: > I gotten around the problems with using Object in my async apis by > defining a ap

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

2014-09-15 Thread Andy Stevko
nd stop receiving emails from it, send an > email 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://g

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 nee

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" 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 > secon

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 plac

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

2014-03-07 Thread Andy Stevko
t; And then use >> MessageFormat<http://docs.oracle.com/javase/7/docs/api/java/text/MessageFormat.html>for >> replacing placeholders (for the case of c.g.g.i18n.client.Messages). >> >> That said, there also are existing GWT-like solutions, such as >> https://githu

Re: GWT+Hibernate

2014-03-06 Thread Andy Stevko
t; group. > To unsubscribe from this group and stop receiving emails from it, send an > email 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/goog

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

2014-01-30 Thread Andy Stevko
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 === "If everything seems under control, you're just not going fast

Re: render() - a better way?

2014-01-11 Thread Andy Stevko
t, just different > 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

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 10

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 http://bl

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" wrote: > I have a huge GWT project. I use GWT ecl

Re: GWT and memory leaks

2013-06-19 Thread Andy Stevko
mail 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. > > >

Re: Facebook DIV not rendering on a GWT page

2013-03-21 Thread Andy Stevko
hu, Mar 21, 2013 at 10:49 AM, Xybek 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 li

Re: if you start a new project...

2013-03-21 Thread Andy Stevko
. On Thu, Mar 21, 2013 at 6:43 AM, Thomas Broyer 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 (

Re: Facebook DIV not rendering on a GWT page

2013-03-21 Thread Andy Stevko
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 built, scans the document and enhances the proper elements when loaded. I once ran into a proble

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 wrote: > Hi! > > If I start a new e

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/group/google-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

Re: GWT comet in push server mode?

2013-02-12 Thread Andy Stevko
and stop receiving emails from it, send an > email 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?hl=en. > For more options

Re: WebScokets GWT

2013-02-11 Thread Andy Stevko
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 under control, you're just not going fast enough." M. Andretti -

Re: Go from one module to another module

2013-02-09 Thread Andy Stevko
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 under c

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

2013-01-27 Thread Andy Stevko
isit 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 under control, you're just not going fast enough." M. Andretti --

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" 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 ClientBundleWithLookup which will be

Re: Maintaining security in an additional servlet

2013-01-07 Thread Andy Stevko
sg/google-web-toolkit/-/Q4U23qnnt5kJ. > > 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/grou

Re: Center content of DockLayoutPanel North?

2013-01-03 Thread Andy Stevko
b-toolkit/-/-FbPe35TP64J. > 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-

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

2013-01-03 Thread Andy Stevko
le-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 rec

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

2013-01-03 Thread Andy Stevko
ew this discussion on the web visit > https://groups.google.com/d/msg/google-web-toolkit/-/KLwtm8XUaV8J. > 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. > Fo

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 i

Re: developers.google.com is down

2012-10-26 Thread Andy Stevko
tions, 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 Gro

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 every

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, y

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 wrote: > Have you considered using a SSD instead of a HD? > I've cut my co

Re: GWT Compilation Time Performance Improvement

2012-09-06 Thread Andy Stevko
" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-web-toolkit/-/hhytunHdDYsJ. > > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsub

Re: GWT future

2012-08-08 Thread Andy Stevko
it 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 "Goo

Re: create project component

2012-06-05 Thread Andy 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 rec

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 wrote: > I have a project where the request has been made that I add a print button > to several differen

Re: DTO + GWT

2012-04-24 Thread Andy Stevko
age because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more opti

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 receiv

Re: HTML5 Canvas in IE9

2012-04-11 Thread Andy 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

Re: GWT with a non-java server

2012-04-08 Thread Andy Stevko
sit > https://groups.google.com/d/msg/google-web-toolkit/-/ELpBU67cTAcJ. > 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 th

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" wrote: > I'm not sure I understand you. Create a class inside a > com.google.gwt.user.datepicker.client package, which is provided in the GWT >

Re: How to get page state

2012-03-28 Thread Andy Stevko
oup 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: GWT Performance : Good or Bad ?

2012-03-27 Thread Andy Stevko
m/d/msg/google-web-toolkit/-/j_Gkpwxio6cJ. > > 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

Re: GWT Performance : Good or Bad ?

2012-03-27 Thread Andy Stevko
w 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 wrote: > Regarding GXT I noticed that comparison website is using GXT 2.2.5 yet > is comparing with new GWT 2.4, if making G

Re: GWT + MySql

2012-03-19 Thread Andy 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

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

2012-03-19 Thread Stevko
I am using within my UI Binder ui.xml files along with the debugId I also use 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 way work around? -- You received thi

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 emai

Re: User Login with GWT on Google App Engine

2011-08-08 Thread Andy Stevko
eb-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 se

Re: RIP (Rich Internet Pages) instead RIA

2011-08-06 Thread Andy Stevko
t; > > > 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. > > > >

Re: GWT Developer Job Openings

2011-07-10 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

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 wrote: > Are you using an IBM > JVM?http://code.google.com/p/google-web-toolkit/issues/detail?id=4031 -- You received this message because you are subscri

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" wrote: > I am getting this compiler error. Any tips on resolving it? > >    Compiling 8 permutations >       C

Re: Eclipse hosted mode in Facebook iframe

2011-06-21 Thread A. Stevko
gt; 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. > >

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

2011-06-17 Thread A. Stevko
p. > 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. >

compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-09 Thread A. Stevko
mutation 7... 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

Re: Redirect to place

2011-06-08 Thread A. Stevko
;Google Web Toolkit" group. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/googl

Re: Eample for MVP+EventBus+Presenter+Activity

2011-06-08 Thread A. Stevko
gle-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 everyth

Re: GWT and WebGL

2011-06-07 Thread A. Stevko
t; 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 subscrib

Re: Shortcomings in Places

2011-06-04 Thread A. Stevko
et not all that useful? > > Jeff > > -- > 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 emai

Re: Hosting for GWT projects

2011-06-02 Thread A. Stevko
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. St

Re: EMF Error

2011-06-01 Thread A. Stevko
le-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

Re: How to edit a live project design in GWT

2011-05-25 Thread A. Stevko
ps.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, y

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

2011-05-25 Thread A. Stevko
326) >at > org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java: > 542) >at org.mortbay.jetty.HttpConnection > $RequestHandler.content(HttpConnection.java:938) >at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755) >at org.mortbay.jett

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

2011-05-25 Thread A. Stevko
: >> > >> > > 765) >> > >> > >at >> > >> org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java: >> > >> > > 418) >> > >> > >at >> > >> > >> >>

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 ge

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 #setEmptyDataWidget(com.google.gwt.user.clie

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 sa

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

2011-05-18 Thread Stevko
gt; context. Start Date: On May 18, 10:00 am, Stevko wrote: > DatePickerdoes not allow picking of the last dates i

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: Empty Response From HTTP Request

2011-05-12 Thread A. Stevko
the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://gr

Re: Empty Response From HTTP Request

2011-05-12 Thread A. Stevko
ler works well on Windows. ---Stevko On Wed, May 11, 2011 at 3:14 PM, Nick Apperley 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: UIBinder and Dreamweaver

2011-04-26 Thread A. Stevko
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 jus

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 ? -- -- A. Stevko === "If everything seems under

Re: View GWT RPC traffic

2011-04-15 Thread A. Stevko
; 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'r

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

2011-04-07 Thread A. Stevko
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 === &q

Re: Relative paths in files retrieved by RequestBuilder

2011-04-06 Thread A. Stevko
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 contr

Re: JDBC Connection on GWT

2011-04-06 Thread A. Stevko
gt; : > >> > > > > > 15) > >> > > > > >at sun.reflect.NativeMethodAccessorImpl.invoke0(Native > >> > Method) > >> > > > > >at > >> > >> > > sun.reflect.NativeMethodAccess

Re: UIBinder style de-obfuscator

2011-03-29 Thread A. Stevko
est/DevGuideClientBundle.html#Levers_and_Knobs>" > apply, particularly 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 Go

UIBinder style de-obfuscator

2011-03-29 Thread A. Stevko
what it looks like obfuscated .GLQWISYBLQ { 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 Gr

Re: Problem with JSNI

2011-03-27 Thread A. Stevko
Thanks in advance > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to >

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

2011-03-15 Thread A. Stevko
er this roadblock. > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-to

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

2011-03-13 Thread A. Stevko
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 === "

how to post & handle RequestFactory server warnings/errors?

2011-03-11 Thread A. Stevko
lure() nor Receiver<>.onViolation() report 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 eve

Re: help sending emails in GWT

2011-03-01 Thread A. Stevko
this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more

Re: help sending emails in GWT

2011-02-28 Thread A. Stevko
sing Java Mail tells me i >> > need the activation.jar but the following line gives me a warning that >> > the activiation is never used anywhere in my class >> > >> > import javax.activation.*; >> > >> > Any help is much appreciated >> &

Re: Java Mail Provider

2011-02-10 Thread A. Stevko
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."

Re: SSH + RMI in GWT

2011-02-09 Thread A. Stevko
ile you 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

Re: Best Design Pattern for widgets

2011-01-07 Thread A. Stevko
ogle 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-web-toolkit+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/g

Re: Label Click Handler Problem

2011-01-04 Thread A. Stevko
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 e

Re: How to write file with GWT?

2011-01-04 Thread A. Stevko
I've used this code frag to write XML on app engine without any problems. ByteArrayOutputStream baos = new ByteArrayOutputStream( ); XMLEncoder encoder = new XMLEncoder(baos); encoder.writeObject(myObject); encoder.close(); return baos.toString(); I believe I got the code from Example Depot at ht

  1   2   >