Do Google Web Toolkit's touch events support Windows tablets?

2020-07-27 Thread Andy Langer
Hi all. Currently working on a webapp using GWT. I currently have a feature working with touch events on a Canvas. The feature itself works perfectly fine on every device but windows tablets (surface pro). Is there something special I have to do for this, or does GWT have no way of doing this?

Re: GWT 2.9.0 release

2020-05-13 Thread Andy Stevko
Congratulations! On Wed, May 13, 2020 at 8:40 PM Colin Alworth wrote: > Today we are pleased to announce the next release of GWT, version 2.9.0. > Some highlights of this release: > * GWT supports Java 9, 10, 11 language features. > * The elemental2 1.0.0 release is supported, along with >

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: what is xml 'is' attribute

2016-04-04 Thread Andy Stevko
TY :) On Mon, Apr 4, 2016 at 1:45 PM, Jens wrote: > Its not an UiBinder construct because within a HTMLPanel (which the > example uses as root) everything is treated as HTML unless its a UiBinder > tag. So what you are seeing in the example is plain HTML with Polymer >

Re: Are there any currently developed GWT Widget Libraries?

2016-01-20 Thread Andy Stevko
FWIW, Sencha GXT has an open source edition https://www.sencha.com/legal/GPL/ You cannot include Sencha Ext JS or Sencha GXT in a closed source distribution under this license. On Wed, Jan 20, 2016 at 9:23 AM, Thomas Broyer wrote: > > > On Wednesday, January 20, 2016 at

Re: Possible to set a custom (non bindAddress) server IP in sourceMappingURL ?

2015-03-17 Thread Andy Dale
I solved it different way as I would not be allowed to switch to bridged (the network admin would not be too amused). In the end I set the bindAddress to 0.0.0.0, this means that the superdev mode is bound to my virtual machines host name, I then added a rule in the windows hosts file. the

Possible to set a custom (non bindAddress) server IP in sourceMappingURL ?

2015-03-17 Thread Andy Dale
as set in the super dev mode Any help/advice would be greatly appreciated. Cheers, Andy -- 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 to google-web

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
#1 - yes, need to hook your servlets to uris #2 - I do it all the time... #3 - apache is a web server - not a java servlet container. apache is fine for serving html/js. tomcat is fine for serving html/js and servlets. #4 - it seems that the plesk power pack has tomcat which should be enough to

Re: GWT and TimeZone

2014-09-17 Thread Andy
it. Good luck! -Andy On Friday, September 12, 2014 10:55:40 AM UTC-4, Gioacchino Del Prete wrote: Hello everybody. I have a question, if I have a Date in any TimeZone and I want to convert this Date in a Date with TimeZone GMT + 00 (London), how can I do? Thank you for the reply Best

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

2014-09-15 Thread Andy Stevko
I gotten around the problems with using Object in my async apis by defining a api that declares the possible types (native custom) as parameters so that they get included within the serialization policy. Without that policy, anybody can pass any type in the response and it will be de-serialized -

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

Re: DateBox incorrect time past certain dates

2014-07-22 Thread Andy
We found that the best approach is to pick all dates at midnight UTC and convert them as necessary on the server. You can read about it here: http://traction.tractionsoftware.com/traction/permalink/Blog1986 Cheers, Andy On Wednesday, July 16, 2014 3:29:04 PM UTC-4, William Davis wrote: I

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: How to make SuggestBox display scroll properly?

2014-07-15 Thread Andy
#L196-L213 from our gwt-traction library http://tractionsoftware.github.io/gwt-traction/. -Andy On Monday, July 14, 2014 1:40:06 PM UTC-4, chris-x...@db.com wrote: I'm working with a SuggestBox that produces a very large number of suggestions on the first one or two chanracters. I don't want

Re: How to make SuggestBox display scroll properly?

2014-07-15 Thread Andy
() is protected! In that case I would just chain them both in a native method. So in your subclass add: public native MenuItem getSuperSecretSelectedMenuItem() /*-{ }-*/; Anyone know the rationale behind making getItems() and getSelectedItem() protected in MenuBar? -Andy On Tuesday, July 15, 2014

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: Reload client automatically on server side code update

2014-04-22 Thread Andy
://stackoverflow.com/questions/4193373/best-practices-for-gwt-services-exceptions-logging/4725052#4725052 -Andy On Tuesday, April 22, 2014 7:10:19 AM UTC-4, Varun Jain wrote: Hi, Whenever a new client side patch update happens with update to GWT classes, the generated javascript incompatible causing

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

2014-03-07 Thread Andy Stevko
Tom, Are you using dev mode in eclipse? If so, it does the recompiling for you on the fly. To show what your web app looks like without on the fly compiling, do a full compile using the menu item GWT Compile Project... and then stripping the ?gwt.codesvr= from the url. On Fri, Mar 7, 2014 at

Re: GWT+Hibernate

2014-03-06 Thread Andy Stevko
Move the classes that are referenced both on the client server (like DTO) into the shared package. Strip down SavePersonne() to almost nothing to see what is causing the Initialization exception. Perhaps your web.xml is misconfigured? This tutorial runs through all the steps to setting up RPC

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

2014-01-30 Thread Andy Stevko
defined the function to call Window.open( ... ) http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/Window.html#open(java.lang.String, java.lang.String, java.lang.String) On Thu, Jan 30, 2014 at 7:32 AM, kibu Kuhn gernot.ve...@gmx.de wrote: hi, as MenuItem does not render a

Re: render() - a better way?

2014-01-11 Thread Andy Stevko
Yes, gwt widgets make immediate changes to the dom (post onAttach()) whereas the v2 GXT's rendering model only modified the DOM when render() was called. It was impossible to guarantee the layout with mixed framework widgets. This was all changed with the v3 rewrite. Perhaps I misunderstand

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-rawhistory on github

2013-11-12 Thread Andy
%20 and the utf8 char are decoded, but + %26 and %2B are not. I'm admittedly not an expert in proper hash encode/decode, but the above result seems wrong. I suspect it's something subtle in the combination of HTML decode of the href= attribute and URL decode of that value. -Andy On Tuesday

Re: gwt-rawhistory on github

2013-11-12 Thread Andy
Andy pul...@gmail.com javascript: No, I haven't. Thanks for the link! From a quick glance at the code, it's use of location.hash and encode/decode will likely still cause issues for us. Over the next few days, I'll try to create a version of my demo that uses the new code. It could

Re: gwt-rawhistory on github

2013-11-12 Thread Andy
)/(#)/(+)(+)( )(%2B)(%20)/禅 So if you use GWT Anchors or generate links server-side, the value of History.getToken() depends on the browser. -Andy On Tuesday, November 12, 2013 8:10:31 AM UTC-5, Andy wrote: No, I haven't. Thanks for the link! From a quick glance at the code, it's use

gwt-rawhistory on github

2013-11-11 Thread Andy
of moving it to github, I implemented a demo. https://github.com/andykellr/gwt-rawhistory I'd appreciate any feedback, particularly if you've also run into history token encode/decode issues. -Andy https://code.google.com/p/gwt-traction/ -- You received this message because you are subscribed

Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Andy
I just read through the notes from the GWT steering committeehttps://groups.google.com/d/msg/gwt-steering/ldyo7OXUnHQ/ogtT-kPFoaoJand would like to share our perspective. I know you have a lot of survey results and we're just 1 company, but here's some more info based on our needs. *Java 8

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Andy
Thanks for your input. It sounds like we're in the identical situation. Regarding onFailure, do you use an abstract implementation of AsyncCallback, like I mention in this post? http://stackoverflow.com/a/4725052/497700 -Andy On Friday, October 25, 2013 11:47:43 AM UTC-4, stuckagain wrote

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Andy
to use Java for all of this. Thanks for all of the great work you guys have done over the years. I'm really looking forward to 3.0. -Andy On Friday, October 25, 2013 1:21:22 PM UTC-4, Ray Cromwell wrote: I think what we're really thinking about doing is preserving IE8 for the existing gwt

Re: making async call(kind of recursive) inside onsuccess()

2013-09-17 Thread Andy
If you need to do this in a few places, I would create a class like this: public abstract class RepeatingAsyncMethodT implements AsyncCallbackT { public abstract void sendAsyncRequest(); public abstract boolean shouldRepeat(T result); public abstract void onComplete(T lastResult);

Re: making async call(kind of recursive) inside onsuccess()

2013-09-17 Thread Andy
Sorry, I just noticed that you said you need to pass new data each time. If the new data is based on the old data, you'll need to pass result to sendAsyncRequest. If the new data comes from something else, make that available to your implementation of sendAsyncRequest. On Tuesday, September

Re: chrome upgrade scrolling issues

2013-08-26 Thread Andy King
I have Chrome version 29.0.1547.57 m on Windows 7 and the scrolling appears to work correctly, that is, when I go to one of the other places the scrollbar is at the top of the panel. On Monday, August 26, 2013 9:27:10 AM UTC-7, EMan wrote: my computer (mac) just upgraded to the latest version

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

Changing the Displayed Value in a DataGrid

2013-07-17 Thread Andy King
that identifier. Many thanks for any help! Andy -- 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 to google-web-toolkit+unsubscr...@googlegroups.com. To post

Re: How to Pass Config vars from server to client

2013-07-09 Thread Andy
people can just use it as-is. -Andy On Monday, July 8, 2013 4:02:00 AM UTC-4, Thomas Broyer wrote: On Monday, July 8, 2013 3:58:29 AM UTC+2, Joel Malchiondo wrote: I would like to be able to pass a bunch of values from the server to the client and store them on the client side inside global

Re: Gwt Time picker widget

2013-06-24 Thread Andy
)). Should that be a separate artifact? Cheers, Andy On Thursday, June 20, 2013 3:50:42 AM UTC-4, Jonas wrote: This is great! I really like the GroupedListBox and UTCTimeBox, which really should have been provided in GWT Core. Any chance to see a publication to maven central

Re: GWT and memory leaks

2013-06-19 Thread Andy Stevko
I prefer to head off managing the handler memory leaks by holding the registrations in a View data member that gets automatically released as the view is garbage collected. The sencha gxt library makes it easy to capture and track registrations using the GroupingHandlerRegistration. It should be

Re: Gwt Time picker widget

2013-06-19 Thread Andy
Hi Kedar, We made a widget that sounds like what you need. It's called UTCTimeBox and you can get it from: http://code.google.com/p/gwt-traction/ There's more info in this blog post: http://traction.tractionsoftware.com/traction/permalink/Blog1986 Cheers, Andy On Wednesday, June 19, 2013 2

Re: Timezone difference issue

2013-05-29 Thread Andy
There are many threads about these issues. We solved this problem by wrapping the DateBox with a class called UTCDateBox that you can get here: http://code.google.com/p/gwt-traction/ I wrote about it here: http://traction.tractionsoftware.com/traction/permalink/Blog1986 Cheers, Andy

Re: Timezone difference issue

2013-05-29 Thread Andy
in the DateBox will depend on the timezone. As I understood, this is his problem and this is the reason we created the UTCDateBox. On Wednesday, May 29, 2013 10:34:10 AM UTC-4, Satyarao Kambapu wrote: Hello Andy, As per my experience the difference between DateBox and UTCDateBox is Time Component

Re: Timezone difference issue

2013-05-29 Thread Andy
Hi David, I can't tell if you're asking me or the OP, but I'll tell you what we're doing it and I believe it is what Kedar should be doing. The UTCDateBox implements HasValueLong and we pass a Long over RPC and store a Long on the server. This number always represents midnight in GMT on a

Re: Problem with DateBox

2013-04-23 Thread Andy
in that original discussion. -Andy http://code.google.com/p/gwt-traction/ http://tractionsoftware.com On Tuesday, April 23, 2013 1:33:23 AM UTC-4, Dominic Warzok wrote: Thanks I will read it maybe I find a solution there ;) On Friday, April 19, 2013 12:19:08 PM UTC+2, Jens wrote: Maybe

Re: Working with Dates/Timezones

2013-04-23 Thread Andy
A bit late, but I would recommend you check out our UTCDateBox at http://code.google.com/p/gwt-traction/ I'm justing leaving this comment here so that people discovering this thread later have an easy solution. -Andy On Sunday, August 5, 2012 2:52:58 PM UTC-4, Jens wrote: Here is the TZ

Re: Unable to find '.gwt.xml' on your classpath (again)

2013-04-10 Thread Andy King
Well, I found a solution, although I don't know why the original project doesn't work. The fact that the project ran with no problem on one machine, but had problems on the other machine, seemed to point to a difference in configuration. I renamed the .html file, TimeToPlay.html, to

Unable to find '.gwt.xml' on your classpath (again)

2013-04-08 Thread Andy King
I am at my wits end with this problem ... I've looked at suggested solutions, but none have worked. Here is the (all-too-familiar) error that I see in the GWT Development Mode window: [DEBUG] [fosterapet] - Loading inherited module 'fosterapet' [ERROR] [fosterapet] - Unable to find

Re: Need some help with Totoe and XML

2013-03-27 Thread Andy King
Where is this XML located? Are you receiving on the client machine somehow? I realize that Totoe is a client-side parser and helper, but it would be useful to have some context for why you're doing. Also, what have you tried already? On Wednesday, March 27, 2013 8:01:14 AM UTC-7, skippy

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

Re: if you start a new project...

2013-03-21 Thread Andy Stevko
Thanks for the correction Thomas, old wounds are hard to forget - especially with enterprise projects that refuse to upgrade GWT versions. Yes, BigDecimal support was added in v2.1. and Serializing Enhanced Classes has greatly removed the pain associated with detaching/attaching persistent

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

Re: XMLParser Problems

2013-03-20 Thread Andy King
then this is really very easy. Andy -- 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 to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send

Re: XMLParser Problems

2013-03-17 Thread Andy King
) { if (node.getNodeType() == Node.ELEMENT_NODE) { // node is an account element } node = node.getNextSibling(); } Note that not all child nodes will necessarily be Element nodes ... hence the check for NodeType == Node.ELEMENT_NODE. Andy On Thursday, March 14, 2013 6:02:13 AM UTC-7

[gwt-contrib] Re: Maven-ization Status

2013-03-17 Thread Andy Stevko
A question concerning the partitioning of the code... Will this exercise help allow for code splitting of the GWT libraries? Even with severe code splitting, I am not able to reduce the initial load size to below a megabyte which is prohibitive for a mobile device. On Sun, Mar 17, 2013 at 5:06

Re: GWT comet in push server mode?

2013-02-12 Thread Andy Stevko
Many projects have used comet to push data from server to client. This library seems stable although no changes in almost a year. Appengine's channel api uses comet, works really well, and is easy to implement. IMO, web sockets are more desirable to comet in terms of resource utilization. WS does

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
If this is a MPV application, I would change the View to match the form factor and keep the Model Presenter the same. On Tue, Feb 12, 2013 at 10:57 AM, thesilverham...@gmail.com wrote: This is going to be a very complex web application. I can't get away with just changing things in a CSS

Re: WebScokets GWT

2013-02-11 Thread Andy Stevko
I've had some success using the GWT/JMS/Stomp/WebSocket protocol stack which is built on Web Sockets. The Stomp WebSocket wrapper handles much of the complexity of streaming data over web sockets and maintaining the connection. http://code.google.com/p/gwt-stomp-jms/ On Mon, Feb 11, 2013 at 9:55

Re: Go from one module to another module

2013-02-09 Thread Andy Stevko
The way you defined the demarcation lines is uncommon for a GWT application. They don't usually (re)load the entry point as the user navigates within the application. Passing data from html page to html page via URL param is exposed publicly. SessionStorage is could be the way to go because the

Re: The Chrome 24 Animation bug and unstable APIs in general

2013-01-30 Thread Andy
for your perspective and all of the work you do with gwt. -Andy On Wednesday, January 30, 2013 8:48:41 AM UTC-5, Thomas Broyer wrote: On Wednesday, January 30, 2013 4:11:41 AM UTC+1, Andy wrote: Thanks Thomas. Another great discussion, but I'm really surprised by all of the enterprise

The Chrome 24 Animation bug and unstable APIs in general

2013-01-29 Thread Andy
think there are other people using GWT who would also prefer stability over using prefixed APIs. I'd appreciate hearing your thoughts. Andy Keller http://tractionsoftware.com http://code.google.com/p/gwt-traction/ -- You received this message because you are subscribed to the Google Groups

Re: The Chrome 24 Animation bug and unstable APIs in general

2013-01-29 Thread Andy
implementation, I'm ok with that. In our testing, it looked just fine with the Timer implementation. Thanks, Andy On Tuesday, January 29, 2013 1:11:16 PM UTC-5, Jens wrote: Take a look at https://groups.google.com/d/topic/google-web-toolkit-contributors/Al-kyayYeQM/discussion -- J. -- You

Re: The Chrome 24 Animation bug and unstable APIs in general

2013-01-29 Thread Andy
Thanks Thomas. Another great discussion, but I'm really surprised by all of the enterprise software hate. Obviously, the core issue is that too many people don't get the Web, but that's another debate. Of those people, who came complaining in the forum, some said they couldn't even

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

2013-01-27 Thread Andy Stevko
This question was already answered in this thread https://groups.google.com/d/topic/google-web-toolkit/7qSLr76O7WM/discussion On Sun, Jan 27, 2013 at 12:37 PM, Celinio cel...@gmail.com wrote: Hi, I would like to ask if there is an easy way to print a portion of a screen in GWT. If a screen

Re: Eclipse, GWT, which class to use and how to call it via a hyperlink?

2013-01-16 Thread Andy King
Glyn, just my two cents ... please take it with a grain of salt if you don't like it! ... it appears that you have programming experience, and I am impressed that you have got as far as you have ... my recommendation is that you go through a Java book (e.g., Head First Java) and a GWT book

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: Chrome 24 and GWT

2013-01-11 Thread Andy
I posted the workaround that we're using to the chromium issue thread: http://code.google.com/p/chromium/issues/detail?id=158910 We have 100s of customers with servers deployed behind firewalls so this is going to be ugly. -- You received this message because you are subscribed to the Google

Re: Maintaining security in an additional servlet

2013-01-07 Thread Andy Stevko
If the content is highly sensitive, then using adobe's own method of securing it would be the simplest method. Encrypting / Password protecting a pdf file is pretty basic security that would stop the casual hacker. Your service needs to prevent request record and replay attacks. Viewing

Re: How to integrate Jsoup in GWT

2013-01-04 Thread Andy King
It appears that Jsoup may be intended for use on the server-side of the application, and yet you are using it on the client side. If you want to use it in the client then you'll have to make the source code available to the GWT compiler, and the source is in the

Re: ByteBuffer to String

2013-01-04 Thread Andy King
I don't think ByteBuffer is available in GWT ... can you use the first solution suggested here: http://stackoverflow.com/questions/88838/how-to-convert-strings-to-and-from-utf8-byte-arrays-in-java On Thursday, January 3, 2013 8:17:11 AM UTC-7, Andres Q wrote: Hi! I have the following Java

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

2013-01-03 Thread Andy Stevko
First step - need to add an import declaration for your CustomTree package ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:my='urn:import:test.my.custom' my:CustomTree .../ On Thu, Jan 3, 2013 at 4:18 AM, membersound kodyreco...@gmail.com wrote: I'm creating a custom Tree

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

2013-01-03 Thread Andy Stevko
The css style rules should allow you to set the background etc for a selected tree item. from http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/Tree.html CSS Style Rules.gwt-Treethe tree itself.gwt-Tree .gwt-TreeItema tree item.gwt-Tree

Re: Center content of DockLayoutPanel North?

2013-01-03 Thread Andy Stevko
Perhaps apply the style to the Label rather than the north element? On Wed, Jan 2, 2013 at 4:47 AM, membersound kodyreco...@gmail.com wrote: How could I center everything that is placed eg in the north/east/west/south segment of a docklayoutpanel? The following does not work... ui:style

Re: losing focus on the page when popup comes

2013-01-02 Thread Andy King
Is this for something like a login screen? I've done this by creating a widget ... the UiBinder XML file is as follows (this is in LoginWidget.ui.xml): ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' g:FlowPanel g:LabelLogin is

Re: The Future of GWT Report 2012 Published

2012-12-04 Thread Andy
I agree 100%. I will be sharing it internally, but I will not tweet/etc about a report that requires people to share their email with Vaadin to download a PDF. That said, thank you Joonas for putting this together. I appreciate the work you guys do. I just disagree with how this is being

Re: The Future of GWT Report 2012 Published

2012-12-04 Thread Andy
Well, I agree with you as well. In short, branding/logo is ok. Hiding it behind an email collection page is less ok. -- 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: The Future of GWT Report 2012 Published

2012-12-04 Thread Andy
I really don't care that much. I was just providing feedback. You have my name and email. May you generate many new leads! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Strange RPC regression in GWT 2.5

2012-11-30 Thread Andy
issues from iOS 6 when opening links in new tabs? 2) Does anyone have a suggestion on where I should look in GWT src to investigate the issue? Sorry this is so vague. I'm happy to provide any more information that might be helpful. -Andy -- You received this message because you

Re: Strange RPC regression in GWT 2.5

2012-11-30 Thread Andy
Good suggestion, but we've addressed that issue (and it was also an issue with GWT 2.4 so backporting wouldn't have resolved it). iOS 6.0.1 also stopped caching posts. Thanks for the input! On Friday, November 30, 2012 10:43:30 AM UTC-5, Joseph Lust wrote: A shot in the dark here, but have

Re: Move gwt-traction to GitHub?

2012-11-21 Thread Andy
I appreciate the feedback and it's interesting to hear that you're splitting up gwt-user. I'll probably keep most of it together, but RawHistory probably belongs in its own repo. As you mentioned AutoSizingTextArea could be on its own. It will be a great day when I can add a deferred binding

Re: The purpose of GWt

2012-11-21 Thread Andy King
You can try this: http://lmgtfy.com/?q=gwt+animation+examples But seriously, there are so many examples available! Even the GWT showcase has an example (http://gwt.google.com/samples/Showcase/Showcase.html#!CwAnimation). On Wednesday, November 21, 2012 1:13:21 PM UTC-7, Goran Bojanic wrote:

Another Request Factory Example (using MySQL)

2012-11-21 Thread Andy King
I have started to create another example/tutorial, this time using MySQL for the data (the first example just held the data in memory). The example has some way to go before it is complete, but it may help others even in its current state. The first part of the tutorial includes instructions

Re: developers.google.com is down

2012-10-26 Thread Andy Stevko
Could this have anything to do with the appengine downtime currently in progress?? On Fri, Oct 26, 2012 at 11:44 AM, Moshe Gorin evan.go...@gmail.com wrote: I also have not been able to reach https://developers.google.com/ since about 10:30am E.S.T. On Friday, October 26, 2012 10:39:45 AM

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: CSS 3 transition+ GWT

2012-09-17 Thread Andy
the class on an element and the transition takes care of the animation. You can see it here http://code.google.com/p/pulazzo-lastcall/ (in the demo, choose a date in the future to trigger the countdown). -Andy On Saturday, September 15, 2012 12:34:00 PM UTC-4, regnoult axel wrote: Hello, I do

Re: Date and time pickers in any timezone

2012-09-14 Thread Andy
Got it. I saw that file -- user/src/com/google/gwt/i18n/client/constants/TimeZoneConstants.properties -- and wasn't sure if that was the approach you were taking. Thanks. On Friday, September 14, 2012 10:25:55 AM UTC-4, Andrei wrote: GWT has a file with JSON strings for all time zones they

Re: Date and time pickers in any timezone

2012-09-13 Thread Andy
My understanding is that you can do this on the client side if you only need to edit in the timezone of the browser. The problem I had was that my users have a timezone preference that can be different than the browser and the browser doesn't provide access to every timezone. Because the

Re: Date and time pickers in any timezone

2012-09-13 Thread Andy
Got it. I considered that approach as well, but it seemed a bit more complicated. Where are you getting the JSON data to present to the client? On Thursday, September 13, 2012 11:02:40 AM UTC-4, Andrei wrote: I am not using browser's time zone and its offset - it would not work, as you

Re: Date and time pickers in any timezone

2012-09-11 Thread Andy
type=date for iOShttp://code.google.com/p/gwt-traction/source/browse/src/com/tractionsoftware/gwt/user/client/ui/impl/UTCDateBoxImplHtml5.java . Cheers, Andy On Monday, September 10, 2012 6:47:50 PM UTC-4, Thomas Broyer wrote: On Tuesday, September 11, 2012 12:36:33 AM UTC+2, Andy wrote

Date and time pickers in any timezone

2012-09-10 Thread Andy
it here: Creating GWT Date / Time Pickers That Work in Any Time Zonehttp://traction.tractionsoftware.com/traction/permalink/Blog1986 It was a bit frustrating to get the timezone issues right and I hope other people will benefit from it. Cheers, Andy -- You received this message because you

Re: Date and time pickers in any timezone

2012-09-10 Thread Andy
that corresponds to the proper time using the values from the controls with the user's preferred TimeZone. If that doesn't make sense, I'm happy to clarify further. -Andy On Monday, September 10, 2012 5:11:39 PM UTC-4, Andrei wrote: Andy, Great post. I just finished my own implementation

Re: Date and time pickers in any timezone

2012-09-10 Thread Andy
6:47:50 PM UTC-4, Thomas Broyer wrote: On Tuesday, September 11, 2012 12:36:33 AM UTC+2, Andy wrote: In our application, TimeZone is a user preference. Regardless of where they are in the world and how their computer and browser are configured, our application renders using

Re: GWT Compilation Time Performance Improvement

2012-09-06 Thread Andy Stevko
Have you considered using a SSD instead of a HD? I've cut my compile times dramatically that way. On Thu, Sep 6, 2012 at 12:08 PM, Chak Lai chaklam@gmail.com wrote: Instead of compiling one permutation at a time, there is an option to compile multiple permutations at the same time by

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
David, Its a BUY-long on my list. Seeing the huge line of peeps waiting for the history future session was a sure signal that there is a lot of interest (outside of google). The volume of GWT recruiter hits on my LinkedIn profile means there is new work being done, Moving to an external F/OSS

Re: DevMode not working in Chrome after update

2012-07-25 Thread Andy
by dragging it into the extensions window, but it still will not load Mac Lion with latest Chrome. Anybody figure out what is wrong yet? Thanks, Mike. On Tuesday, July 17, 2012 4:16:03 AM UTC-10, Andy wrote: I updated Chrome this morning and now when I try to use DevMode I get an error

DevMode not working in Chrome after update

2012-07-17 Thread Andy
I updated Chrome this morning and now when I try to use DevMode I get an error Could not load GWT DevMode Plugin and an offer to Download the GWT Developer Plugin. When I try to download it (it's already installed), it says Extensions, apps, and user scripts can only be added from the Chrome

Re: DevMode not working in Chrome after update

2012-07-17 Thread Andy
I still get the error Could not load GWT DevMode Plugin and the normal offer to download it (even though it was and is again installed). On Tuesday, July 17, 2012 11:03:10 AM UTC-4, Thomas Broyer wrote: On Tuesday, July 17, 2012 4:16:03 PM UTC+2, Andy wrote: I updated Chrome this morning

Re: create project component

2012-06-05 Thread Andy Stevko
Not exactly sure what you are looking for but I'll give it a shot. You may be looking for how to create a gwt module which can be referenced by another gwt project. Here is one way of creating a module which consists of a reusable widget.

  1   2   >