Chaining Animations to Canvas or SVG in GWT app? Lienzo? RaphaelGWT?

2015-12-28 Thread jscheller
Hello - I'm coming back to GWT after a long trip into non-web related work. A few years ago I had used RaphaelGWT to create some very nice animated visualizations in a GWT app, but it doesn't look like that project or Raphael itself have been updated in some time. Which may make some sense

Re: GWT Developer Plugin for Firefox 9

2011-12-23 Thread jscheller
On Dec 22, 5:29 am, Alan Leung acle...@google.com wrote: Alright, FF9 tested on all OS. Let me know if you run into any problems. Well, that was the Christmas present I was hoping for... Thanks Alan! -- You received this message because you are subscribed to the Google Groups Google Web

Re: too much code: GWT Development with Activities and Places

2011-09-27 Thread jscheller
On Sep 26, 2:49 pm, camerojo jadcpub-goo...@yahoo.com.au wrote: It is the bugs in the GWT core that I feel need to be strongly prioritized. That is where any development resources that Google assigns to GWT are most profitably deployed. My worry is that I see those valuable resources being

Simulating button click in DialogBox with key event?

2011-07-08 Thread jscheller
I know I'm missing something obvious here, but what's the current correct approach to catching a keyboard event to close a DialogBox or do something similar (i.e., simulate clicking the Save or OK button)? I found an older example that uses onNativePreviewEvent() that seems to be unsupported now,

Re: Feedback on different backends for GWT

2011-03-23 Thread jscheller
It sounds like much of your performance is issues will probably be more database related than anything, so a lot of the other backend decision probably come down to personal preference or experience. I've been working on a GWT project that talks to a Django/MySQL backend for several months. The

Re: TabLayoutPanel + dynamic tab content + DialogBox = ?

2011-02-23 Thread jscheller
On Feb 22, 8:02 am, Jeff Larsen larse...@gmail.com wrote: THe problem is that with dialog box, it resizes itself to be the size of widget it contains, and since TabLayoutPanel has no defined size, it won't properly resize itself. You could getting the size of the dynamically generated

Re: TabLayoutPanel + dynamic tab content + DialogBox = ?

2011-02-23 Thread jscheller
On Feb 23, 1:08 pm, Greg Dougherty dougherty.greg...@mayo.edu wrote: Good idea.  I've created such a request. Thanks Greg... I posted a comment and starred it, and will keep my fingers crossed. Looks like another round of refactoring this bloody and butchered dialog box tonight for me... --

TabLayoutPanel + dynamic tab content + DialogBox = ?

2011-02-21 Thread jscheller
So... I've got a TabLayoutPanel I'm trying to embed in a DialogBox, where the contents of the tabs are generated at runtime. I've seen the discussion about making sure DOCTYPE is right and that I'm pulling in CSS for the tabs. I've actually got another similar instance of TabLayoutPanel working

Re: Network visualization with GWT

2011-02-15 Thread jscheller
On Feb 15, 4:52 am, Uemit uemit.se...@gmail.com wrote: or Raphael (http://raphaeljs.com/) but I don't think they provide a GWT wrapper. I've been using the RaphaelGWT wrapper the Hydro4GE guys built with pretty good cross-browser results... http://code.google.com/p/raphaelgwt/ -- You

Re: Logging problem, please Help !

2011-02-15 Thread jscheller
On Dec 27 2010, 12:11 pm, Mauro Bertapelle mauro.bertape...@gmail.com wrote:   // initialize logger with custom formatter   static {     Handler handlers[] = Logger.getLogger().getHandlers();     for (Handler handler : handlers) {       handler.setFormatter(new CustomFormatter(false));    

Re: Logging problem, please Help !

2011-02-15 Thread jscheller
Heck, never mind. I had logging disabled in my gwt.xml file, and apparently that still allows logging to happen with a default formatter in Eclipse. Once I enabled logging, the handlers got installed and my messages are formatted (almost) the way I want them. [slaps head, goes looking for more

Re: Sharing objects between several windows to enable interaction

2011-02-02 Thread jscheller
You might take a look at the gwt-dnd framework, specifically the 'Example 7' windowing sample... http://allen-sauer.com/com.allen_sauer.gwt.dnd.demo.DragDropDemo/DragDropDemo.html#WindowExample That's one way to have the behavior of multiple windows/views within a single GWT app/browser window.

[gwt-contrib] Re: now.. afetr GWT 2.0?

2009-12-17 Thread jscheller
My wish list: More focus on making it easier to build powerful and more elegant interfaces quickly... 1. Visually improved/Less Complex DataGrid (PagingScrollTable) 2. Improved support for animations 3. More/Improved Widgets (integrated from Incubator or elsewhere) The grid issue is huge, and is

Re: Announcing GWT 2.0 Milestone 2

2009-10-22 Thread jscheller
Is there a corresponding build of the GWT Incubator library in sync with MS2? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Announcing GWT 2.0 Milestone 1

2009-10-21 Thread jscheller
Is there a build of the GWT incubator library available for download somewhere for use with the GWT 2.0 ms1 build? --~--~-~--~~~---~--~~ 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 fire events registered with a HandlerManager?

2009-08-20 Thread jscheller
yesterday and seems less complex than what I was doing... Thanks for your help! On Aug 20, 2:25 am, Thomas Broyer t.bro...@gmail.com wrote: On Aug 20, 2:33 am, jscheller jschel...@csoftware.com wrote: Hello - So, I've got a composite that has something like this inside it... private

Re: Possible to set -localWorkers compiler flag in Eclipse?

2009-08-19 Thread jscheller
On Aug 19, 5:22 pm, spike2...@googlemail.com spike2...@googlemail.com wrote: But when I press Compile/Browse in the Hosted Mode I still only use 1 processor, how do I change that? Are you passing a number after the flag, i.e. -localWorkers 4 or similar?

How to fire events registered with a HandlerManager?

2009-08-19 Thread jscheller
Hello - So, I've got a composite that has something like this inside it... private HandlerManager changeHandlers = new HandlerManager( null ); public HandlerRegistration addValueChangeHandler(ValueChangeHandler handler) { return changeHandlers.addHandler(ValueChangeEvent.getType(),

Re: Regarding applying Border to Flextable Cells

2009-07-28 Thread jscheller
Swathi - You might try adding border-style:solid; and see if that makes things behave more consistently. Either way, get a copy of FireBug installed in FireFox and use the inspection feature to poke around the table causing you trouble. If there's some other style getting applied and undoing

Possible to set -localWorkers compiler flag in Eclipse?

2009-07-27 Thread jscheller
Hello - I'm using Eclipse 3.4.2 and GWT 1.7 and wondering if there's some way to set -localworkers (or actually any type of flag) for GWT compiles... Thanks! Jim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Possible to set -localWorkers compiler flag in Eclipse?

2009-07-27 Thread jscheller
Thanks Jason! Too much digging in all the preferences and settings trees, only to find this right in front of me... Duh. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this