Re: SDM incremental compiles and generators

2014-10-15 Thread Gal Dolber
I kept digging on this issue. I was wrong before, its not that the presenters reference the injector, the problem is that on every recompile gwt add the entry point and trace all the reachable classes on the project. My entry point has the reference to the injector and my injector has a reference

SDM incremental compiles and generators

2014-10-14 Thread Gal Dolber
I noticed that SDM incremental compiles are always running gwt generators. I'm using gin and all my controllers have a reference to the gin injector. After the SDM gets to the injector it goes on to regenerate all my presenters and most dependencies. My minimal refresh time right now is 13s, When

Re: SDM incremental compiles and generators

2014-10-14 Thread Gal Dolber
That looks promising! On Tue, Oct 14, 2014 at 4:11 PM, Jens jens.nehlme...@gmail.com wrote: As a developer probably not. There are commits in GWT to improve recompile times when generators run that produce lots of output, e.g.

Re: SDM incremental compiles and generators

2014-10-14 Thread Gal Dolber
Oh, its an old change On Tue, Oct 14, 2014 at 4:22 PM, Gal Dolber g...@dolber.com wrote: That looks promising! On Tue, Oct 14, 2014 at 4:11 PM, Jens jens.nehlme...@gmail.com wrote: As a developer probably not. There are commits in GWT to improve recompile times when generators run

Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-12 Thread Gal Dolber
Great news! thanks to all the team for all the work on SDM, did the migration to 2.7 last week, brought me the smile again while working with GWT. On Sun, Oct 12, 2014 at 5:35 AM, Thomas Broyer t.bro...@gmail.com wrote: Hi all, If you're using 2.7.0-SNAPSHOT, your build might start failing as

Re: Interface vs implementation

2012-11-25 Thread Gal Dolber
As I understand that only applies to gwt-rpc On Saturday, November 24, 2012, shippi wrote: Hi! I am aware of the fact that the GWT best practices are slightly different from the regular java recommendations. There is one question i would like to clarify. I am aware of the fact that when

Re: Use Elemental to optionally generate HTML on the server?

2012-10-10 Thread Gal Dolber
I'm also very much interested in this. You can get Elemental to run on pure Java, but it will take a lot of work. Before Elemental came out I did a very similar DOM abstraction and wrote a pure Java implementation for it as well, to get the tests running. Implementing a java version of Elemental

Re: GWT Compilation Time Performance Improvement

2012-09-04 Thread Gal Dolber
You could also move the compilation process to a bigger machine on the cloud and then if you need to run the compiled site locally do a script to download the content. That improved a lot the compilation time for me. You can also try doing distributed builds (I personally never tried), but here

Re: Google flight field

2012-07-25 Thread Gal Dolber
Its just a div with a datebox, 2 buttons and a bunch of css to make it pretty div d:DateBox / g:Button / g:Button / /div On Wed, Jul 25, 2012 at 5:47 PM, Twentyseven ebarthel...@gmail.com wrote: Hello, I've seen that the Google Flight page is made using GWT (

Re: Submitting a FormPanel affect back button support

2012-07-24 Thread Gal Dolber
I had the same problem. After the upload is complete, remove the formpanel from the screen (removeFromParent). IOW only show the FileUpload when needed. On Wed, Jul 25, 2012 at 12:42 AM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Hi, I see

Re: DevMode for Firefox 14

2012-07-19 Thread Gal Dolber
The Chrome plugin has been broken for a long time and for FF just disable automatic updates and update manually when the plugin gets updated. Also now there's superdevmode, that unless your project is really big works really good, in every browser and I'm even using it on the iPad. Complaining

Re: Using Super Dev Mode on mobile devices

2012-07-05 Thread Gal Dolber
Just when I needed it! thanks!! On Thu, Jul 5, 2012 at 2:25 PM, Daniel Kurka kurka.dan...@gmail.com wrote: Hi Everyone, I just had the time to write a blog post on how to use Super Dev Mode on mobile devices: http://blog.daniel-kurka.de/2012/07/mgwt-super-dev-mode.html Feel free to leave

Re: mgwt 1.1.0 got released

2012-06-17 Thread Gal Dolber
looks great, thanks! On Sun, Jun 17, 2012 at 4:50 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Wow great work!! 2012/6/17 Daniel Kurka kurka.dan...@googlemail.com: mgwt 1.1 just got released. Check out my blog post about whats new:

SuperDevMode and GwtGenerators

2012-06-07 Thread Gal Dolber
Are IncrementalGenerators working on the SuperDevMode? I'm trying to make my gwt generators cacheable, and everything is working on DevMode, but when running on SuperDevMode context.isGeneratorResultCachingEnabled() is always false. Right now the biggest project I have is taking 35s to refresh

Anyone using gwt-rpc over websockets?

2012-05-04 Thread Gal Dolber
Found http://code.google.com/p/gwt-websocketrpc/ and https://github.com/Atmosphere/atmosphere The first one only works with jetty and atmosphere looks good but I was only able to get working long pull, no websockets. Anyone had better luck? -- Guit: beautiful gwt applications

Re: Whole app as one big transmission

2012-05-02 Thread Gal Dolber
https://developers.google.com/web-toolkit/doc/latest/DevGuideCodeSplitting On Wed, May 2, 2012 at 5:38 PM, Blake McBride blake1...@gmail.com wrote: Greetings, Unless I misunderstand something, I just found out that GWT apps get transmitted to, and treated by, the client as a single web page

Re: Firefox 12 release

2012-04-24 Thread Gal Dolber
Fuck that, someone send a death threat to Ray Cromwellhttps://plus.google.com/u/0/110412141990454266397 to release the super draft mode! .. just joking (not really) On Tue, Apr 24, 2012 at 4:46 PM, James Wendel jmwen...@gmail.com wrote: I'm well aware of the other threads that exist. But

Re: Automatically generating GWT web pages

2012-04-21 Thread Gal Dolber
GWT have its own generators system you can use, also it allows you to use any template engine. Here's an example: http://francisshanahan.com/index.php/2010/a-simple-gwt-generator-example/ Or just google for GWT generator On Sat, Apr 21, 2012 at 6:35 AM, vanessa vanessa

Re: Source maps

2012-04-01 Thread Gal Dolber
got exited for a minute... its not there yet, I'm checking out trunk everyday hoping to see SuperDraftMode and SourceMap commited On Sun, Apr 1, 2012 at 7:20 AM, Andrea Boscolo andrew...@gmail.com wrote: Are you sure the whole machinery is already available in the public (trunk) repo? I

Re: Source maps

2012-04-01 Thread Gal Dolber
oh, my mistake, it seems SourceMap is there.. are you using trunk? On Sun, Apr 1, 2012 at 12:31 PM, Gal Dolber gal.dol...@gmail.com wrote: got exited for a minute... its not there yet, I'm checking out trunk everyday hoping to see SuperDraftMode and SourceMap commited On Sun, Apr 1, 2012

Re: GWT and how to make them better.

2012-03-30 Thread Gal Dolber
Hi Bogo, Finally decided to get JRebel, but I'm getting this exception: java.lang.ClassCastException: com.google.gwt.dev.javac.CompilationState cannot be cast to org.zeroturnaround.jrebel.integration.gwt.cbp.CompilationStateInterface Does JRebel support gwt trunk? or only the last stable

Re: GWT and how to make them better.

2012-03-30 Thread Gal Dolber
it (I spend a lot of time working on ui.xml files) Gwt trunk support will be also cool to have. I may sound like I'm complaining, but I'm amazed... the server side alone already worth my money. Keep up the good work! On Fri, Mar 30, 2012 at 10:32 PM, Gal Dolber gal.dol...@gmail.com wrote: Hi Bogo

Re: Am I the only one who´s missing GWT on the new Google Developers Page?

2012-03-20 Thread Gal Dolber
I guess they are still moving everything there, Google Maps just got there Google Plus Posthttps://plus.google.com/u/0/111395306401981598462/posts/iB1Msh2Ur9X and I hope GWT is on the way.. You people keep looking for signals that GWT is dying.. its starting to be annoying, you just need to

Using last snapshot from maven?

2012-02-25 Thread Gal Dolber
Hi, I just added maven support to a project that was using gwt from trunk, and as I moved back to gwt 2.4 I noticed a huge slow down on compilation and dev mode. I guess is because of the generators caching framework thats not available on 2.4, but I'm not really sure. Anyway, is there any

Re: Invoking C++ programs on the client-side

2012-01-25 Thread Gal Dolber
You could check out this project http://code.google.com/p/nativeclient/ On Wed, Jan 25, 2012 at 6:34 PM, mmorckos mikey.morc...@gmail.com wrote: Hello, I'm building a distributed system and I'd like to try GWT to build the client-side. I need the user to have a speech-based input. I'm

Re: Preload web pages

2012-01-06 Thread Gal Dolber
You could use this project http://code.google.com/p/wkhtmltopdf/ It uses webkit to render a site as pdf or as an image. I have never used the image part but the pdf rending is great On Fri, Jan 6, 2012 at 12:23 PM, Adolfo Panizo Touzon adolfo.pan...@gmail.com wrote: Hi, I want to create and

Re: Preload web pages

2012-01-06 Thread Gal Dolber
think the basic use of this framework is to generate the pdf/img in the cmd and then include this img/pdf inside your app... In my case this task is so heavy because I have a big DB... Any ideas? Thank you so much for your response. Adolfo. 2012/1/6 Gal Dolber gal.dol...@gmail.com You

Issues with -XdisableClassMetadata and -XdisableCastChecking

2012-01-04 Thread Gal Dolber
Hi, After making some random changes to a project it stopped working on chrome (only the compiled version and only when compiling obfuscated). Pretty hard to debug, and I actually never found the problem. It occurred to me to disable the compilation flags -XdisableClassMetadata and

Re: Cocoa like UI API for GW

2011-12-24 Thread Gal Dolber
I think its more about extracting the styles from Cappuccino. Personally, I stay away from widget libraries On Sat, Dec 24, 2011 at 10:42 AM, Stefan Ollinger stefan.ollin...@gmx.dewrote: Do you plan to add UiBinder and GWT Designer support? Stefan Am 23.12.2011 21:10, schrieb cbruno: I am

Re: GWT Developer Plugin for Firefox 9

2011-12-22 Thread Gal Dolber
thanks Alan! On Thu, Dec 22, 2011 at 9:29 AM, Alan Leung acle...@google.com wrote: Alright, FF9 tested on all OS. Let me know if you run into any problems. http://www.mediafire.com/?831pp1kk5p8kgjd -Alan On Thu, Dec 22, 2011 at 12:17 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com

Nice post about GWT

2011-12-08 Thread Gal Dolber
http://blog.oio.de/2011/12/08/future-of-gwt-and-gwt-2-5/ Its not mine, but it worth sharing -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are subscribed to the Google Groups Google Web

Re: a mistake when set backgroun-color value

2011-11-27 Thread Gal Dolber
try with backgroundColor, also you don't need to use static methods hp.getElement().getStyle().setBackgroundColor(red); On Mon, Nov 28, 2011 at 12:44 AM, wahaha il...@yahoo.com.cn wrote: i write these code :

Re: CSS generator in GWT

2011-11-19 Thread Gal Dolber
I propuse something similar a time ago http://code.google.com/p/google-web-toolkit/issues/detail?id=5301can=4colspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Stars On Sat, Nov 19, 2011 at 7:32 AM, emerix rafa...@gmail.com wrote: Hello, I was wondering if there was a way to generate

Re: Google Plugin for Eclipse (GPE) is Now Open Source

2011-11-16 Thread Gal Dolber
sooo nice to hear! thanks!! On Wed, Nov 16, 2011 at 6:52 PM, Eric Clayberg (Google) clayb...@google.com wrote: A nice follow-up... http://community.jboss.org/en/tools/blog/2011/11/16/thoughts-on-google-eclipse-plugins-going-open-source -- You received this message because you are

Re: Different GWT compilation from Eclipse and command line

2011-11-16 Thread Gal Dolber
I'm compiling projects using gwt trunk from ant without problem this is my base ant script http://pastebin.com/prRQEETz and this is how I extend it for each project http://pastebin.com/t7RLmd29 the script asume you are using lombok and it support annotation processors, but you should be able to

Re: can we control what element will build in widget?

2011-10-23 Thread Gal Dolber
You cannot change the element a widget uses internally. If you are looking for span implementations(instead of div) you can use: InlineLabel, InlineHTML Otherwise you can create your own widgets, checkout the source code of HTML or Label, its not hard to do. Regards On Sun, Oct 23, 2011 at

Re: The new GMail layout

2011-10-21 Thread Gal Dolber
Gmail does not use gwt but http://code.google.com/closure/ Don't use GWT because Google made it and use it in some projects.. decide by yourself if is a good fit for your needs or not. I didn't use Closure, but I'm sure its a great project. If you're not sure with gwt you should definitely try

Re: why does the HTML widget do not have a name attribute?

2011-10-20 Thread Gal Dolber
The HTML widget is implemented with a div.. so there's no reason to set a name... If you still want to set the name attribute to it: htmlWidget.getElement().setAttribute(name, SomeName); On Fri, Oct 21, 2011 at 12:23 AM, wahaha il...@yahoo.com.cn wrote: can you more clearly? On Oct 20, 4:27

Re: why does the HTML widget do not have a name attribute?

2011-10-20 Thread Gal Dolber
OMG On Fri, Oct 21, 2011 at 1:05 AM, wahaha il...@yahoo.com.cn wrote: and the Label widget do not have a name attribute too,why?? On Oct 21, 11:23 am, wahaha il...@yahoo.com.cn wrote: can you more clearly? On Oct 20, 4:27 pm, Thomas Broyer t.bro...@gmail.com wrote:

AtUnit: Easy Java unit tests with mocks (JMock or EasyMock) and dependency injection (Spring or Guice)

2011-10-19 Thread Gal Dolber
Hi all, This is just a little post to share this awesome project http://code.google.com/p/atunit/ (from logan.johnson) I found a few months ago. Anyone using guice/gin should try it! Regards -- Guit: Elegant, beautiful, modular and *production ready* gwt applications.

Re: Convert Java bean Object to JSON in GWT 2.4

2011-10-12 Thread Gal Dolber
here's another nice project http://code.google.com/p/piriti/ to use on the client side On Wed, Oct 12, 2011 at 7:38 PM, Tomasz Gawel tomaszga...@op.pl wrote: As to JSON: Have you tried Google GSON library ? http://code.google.com/p/google-gson/ And second question: Do you really need JSON?

Re: Inviting you to NEXT interfaces (GWT Touch framework)

2011-10-04 Thread Gal Dolber
Looks and works amazing! good job! On Tue, Oct 4, 2011 at 9:38 AM, Thomas Broyer t.bro...@gmail.com wrote: Er, native looking? really? looks to me rather like iPhone-looking. (I'm by no mean criticizing your technical work, it's just that I launched the demo on my Android and it doesn't look

Re: twitter4j + GWT

2011-09-29 Thread Gal Dolber
I don't think twitter4j works on gwt. I use this http://code.google.com/p/gwt-rest-client/ to call twitter from gwt On Wed, Sep 28, 2011 at 11:50 PM, Bruno Sandivilli bruno.sandivi...@gmail.com wrote: Anyone can help me with this? I want to have an ouath twitter application based on on GWT.

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

2011-09-25 Thread Gal Dolber
I also agree, but I don't think google is responsable for improving the user framework on gwt. It is great that they put together uibinder, gwt-rpc, the editors framework and other goodies, but its your choice to use them or not. I am personally happy with a strong gwt core, and that just keep

Re: Template Alternatives to UiBinder?

2011-09-09 Thread Gal Dolber
I am experimenting with Google Clousure Templates http://code.google.com/closure/templates/. Exploring their source code I realized that they support compilation to Java, so you can compile your closure templates to java and use them with gwt On Fri, Sep 9, 2011 at 8:15 AM, Tom Carchrae

Re: scalable server backend for browser games

2011-09-09 Thread Gal Dolber
Checkout http://code.google.com/appengine/ and http://aws.amazon.com/ec2/ On Fri, Sep 9, 2011 at 2:36 PM, Karel karel.cromb...@gmail.com wrote: Hey guys, I'm currently investigating the possibilities of using GWT to develop a facebook browser game. The client should pose no problem; the main

Re: Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-07 Thread Gal Dolber
now is a good deal! Great job! On Wed, Sep 7, 2011 at 7:26 PM, Alain Ekambi jazzmatad...@googlemail.comwrote: Hello folks, Some days ago we introduced * Gwt4Titanium Mobile*, which aims to give developers the ability to write* native mobile applications* for Android and IOS by leveraging

Re: TextShadow won't apply

2011-09-07 Thread Gal Dolber
that should work, why don't you use myLabel.getElement().getStyle().setProperty(textShadow, ...) ? On Wed, Sep 7, 2011 at 10:54 PM, Evan Ruff evan.r...@gmail.com wrote: I think I might be going crazy. I have a Label element. I'm trying to apply a simple text shadow using:

Re: TextShadow won't apply

2011-09-07 Thread Gal Dolber
never mind... On Thu, Sep 8, 2011 at 1:55 AM, Gal Dolber gal.dol...@gmail.com wrote: that should work, why don't you use myLabel.getElement().getStyle().setProperty(textShadow, ...) ? On Wed, Sep 7, 2011 at 10:54 PM, Evan Ruff evan.r...@gmail.com wrote: I think I might be going crazy. I

Re: Java's Write Once, Run Anywhere for Mobile with GWT is Here!

2011-08-29 Thread Gal Dolber
This still have a great problem, we need to compile on every change, and we cannot debug in java. I am not even sure if its possible to solve that problems. Any plans? On Mon, Aug 29, 2011 at 4:58 PM, Alain Ekambi jazzmatad...@googlemail.comwrote: Hi Thomas, Hi Leandro, Hi all Indeed i

Re: Acces to annotations in deferred binding

2011-08-18 Thread Gal Dolber
Make sure the annotation has rentention(runtime): @Retention(RUNTIME) public @interface Caption { ... On Thu, Aug 18, 2011 at 8:21 AM, Adolfo Panizo Touzon adolfo.pan...@gmail.com wrote: Hi everybody, I have this class: *class Person{* *@Caption(name=Name)* *String name;* *}* How

Re: scrolling in iPad

2011-08-07 Thread Gal Dolber
ScrollPanel do work. What version of gwt are you using? On Sat, Aug 6, 2011 at 10:17 PM, macagain rgk...@gmail.com wrote: What's the best or right way to do gwt apps that scroll properly on the iPad? I.e. apps that are bigger than the browser window. Scrollpanel does seem to work either.

Re: http://www.google.com/hotelfinder

2011-08-03 Thread Gal Dolber
the mouse from right direction to left, nothing happens. 2) Also, how do i check bounds? 3) How to set the minimum and maximum value of the sliders? Thanks Deepak On Tue, Aug 2, 2011 at 5:44 AM, Gal Dolber gal.dol...@gmail.com wrote: a quick decoding of the one there: // Markup .labelLeft

Re: GWT is for apps — right? But what's about static pages? (GWT's Future Plans...)

2011-08-03 Thread Gal Dolber
GWT isn't the problem, you can easily make a non-CEO-friendly apps with jquery, sencha, or any other js framework. The problem is that search engines do not crawl AJAX apps yet. The proposal to make ajax crawlable is a quick solution to make them work with old crawling infrastructure. I really

Re: MVC + Command Pattern + Code Splitting?

2011-08-02 Thread Gal Dolber
same problem here +1 I have been thinking a lot about this and I don't think there is a simple solution. A custom rpc generator with node detection that load all the node's dependencies inside a GWT.runAsync is the only thing I could think of, but I didn't try to implement it yet. In the

Re: http://www.google.com/hotelfinder

2011-08-01 Thread Gal Dolber
Wow, really nice app. 1) Yes, its gwt. 2) Thats not a datagrid, but a pile of divs. Seems to be a ScrollPanel(cause it works on ipad) with a FlowPanel inside and a bunch of custom components inside it. The row expansion its just a widgets changing its contents. 3) These widgets may be from

Re: http://www.google.com/hotelfinder

2011-08-01 Thread Gal Dolber
PD: the feedback feature is amazing! On Mon, Aug 1, 2011 at 9:04 AM, Gal Dolber gal.dol...@gmail.com wrote: Wow, really nice app. 1) Yes, its gwt. 2) Thats not a datagrid, but a pile of divs. Seems to be a ScrollPanel(cause it works on ipad) with a FlowPanel inside and a bunch of custom

Re: http://www.google.com/hotelfinder

2011-08-01 Thread Gal Dolber
, Deepak Singh deepaksingh...@gmail.comwrote: Yes. So can we expect some features to be made open source / included in GWT by google ? At lease i need this slider component asap. How it is possible to get that. On Mon, Aug 1, 2011 at 5:44 PM, Gal Dolber gal.dol...@gmail.com wrote: PD

Re: http://www.google.com/hotelfinder

2011-08-01 Thread Gal Dolber
a quick decoding of the one there: // Markup .labelLeft { left:-12px; // Min position height: 25px; width: 25px; background-color: #444; } .labelRight { left:178px; // Max position height: 25px; width: 25px; background-color: #444; } g:HTMLPanel div

Re: GWT and Spring

2011-08-01 Thread Gal Dolber
Buenas, bienvenido! No use nunca spring, pero parece haber mucha informacion al respecto, este el primer proyecto que aparece: http://code.google.com/p/gwtrpc-spring/ Tambien hay instrucciones en gwt-incubator http://code.google.com/p/google-web-toolkit-incubator/wiki/IntegratingWithSpring

Re: Dynamically convert between TextBox and PasswordTextBox

2011-07-29 Thread Gal Dolber
From a code and css points of view they are exactly the same. You should be able to change from TextBox to PasswordTextBox without changing anything. On Fri, Jul 29, 2011 at 5:05 PM, Ben Munge ben.mu...@gmail.com wrote: I have a requirement to turn some financial fields into masked fields and

Re: Offtopic: does anyone have a solution to fix error-markers on OSXLion eclipse scroll?

2011-07-26 Thread Gal Dolber
yes, Im using indigo, just tried both configurations and no results... so strange On Tue, Jul 26, 2011 at 3:16 AM, Shawn Brown big.coffee.lo...@gmail.comwrote: The error marker is not shown in the scroll bar, I can't find a solution. thanks Are you using Indigo? Seems to work fine.

Re: Offtopic: does anyone have a solution to fix error-markers on OSXLion eclipse scroll?

2011-07-26 Thread Gal Dolber
So happy! http://stackoverflow.com/questions/6780269/running-eclipse-on-mac-os-x-lion Now I was able to find the solution. Thanks Shawn! On Tue, Jul 26, 2011 at 3:59 AM, Gal Dolber gal.dol...@gmail.com wrote: yes, Im using indigo, just tried both configurations and no results... so strange

Re: SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-26 Thread Gal Dolber
I am, but your post is too long to read :) For what I understood, I had a similar problem, and I solved it encapsulating the create widgetC in a DeferredCommand (for your example). Its really hard for me to understand the modification you purpose, maybe someone from google could see it. But I

Re: Frustrated with GWT

2011-07-24 Thread Gal Dolber
Maybe the uppercases? try this: url-pattern/timesheettracking/timesheetlogin/url-pattern On Sat, Jul 23, 2011 at 9:16 PM, edprog edwin...@gmail.com wrote: Hello, I like the look and feel of GWT but I can find out why i am getting a Error when invoking the pageable data service :404 html

Re: [Announcement] GWT animation and effect library with CSS3 support

2011-07-21 Thread Gal Dolber
great demo!! On Thu, Jul 21, 2011 at 2:49 PM, mechacha mecha...@gmail.com wrote: Tada! I just released it! Hope that will be useful to some of you. Even if the documentation is currently missing. But you can always check the examples. Just try a demo!

Re: ConditionalProperties

2011-07-19 Thread Gal Dolber
nobody? On Wed, Jul 13, 2011 at 7:47 PM, Gal Dolber gal.dol...@gmail.com wrote: Hi, Is this working already? http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties define-property name=mobile.user.agent values=android, iphone, not_mobile / property-provider name

Re: ConditionalProperties

2011-07-19 Thread Gal Dolber
Thanks! I still don't understand what I am doing wrong. I even can't get working a normal selection property. {{{ define-property name=my.property values=default / property-provider name=my.property generator=com.myPropertyGenerator / extend-property name=my.property values=value1, value2 /

Re: ConditionalProperties

2011-07-19 Thread Gal Dolber
Yes, I though that, but then I saw the i18n locale property, that is the most similar to the one I am trying to do and It doesn't use when-property-is generate-with class=com.google.gwt.i18n.rebind.LocalizableGenerator when-type-assignable class=com.google.gwt.i18n.shared.Localizable /

Re: Does passing domain objects to a view break MVP?

2011-07-18 Thread Gal Dolber
I think the model-view separation doesnt mean that you cannot pass pojos or dtos to the view but that the view should not make direct request to the server, or if using local storage, to the database On Monday, July 18, 2011, cri chuck.irvine...@gmail.com wrote: My tentative understanding of MVP

Re: how to fire blur event when keydown ?

2011-07-16 Thread Gal Dolber
This is a hard one. If you are trying to do what I think you need to fire a tab event on the textbox, that will trigger the blur, and focus the next field. // The code should look something like this NativeEvent e = Document.get().createKeyDownEvent();

Re: how to fire blur event when keydown ?

2011-07-16 Thread Gal Dolber
If forgot to say: the keyDownEvent you create should have the KeyCodes.KEY_TAB key code On Sat, Jul 16, 2011 at 2:42 PM, Gal Dolber gal.dol...@gmail.com wrote: This is a hard one. If you are trying to do what I think you need to fire a tab event on the textbox, that will trigger the blur

ConditionalProperties

2011-07-13 Thread Gal Dolber
Hi, Is this working already? http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties define-property name=mobile.user.agent values=android, iphone, not_mobile / property-provider name=mobile.user.agent![CDATA[ { var ua = window.navigator.userAgent.toLowerCase(); if

Re: FlexTable and clickHandler depreciated?

2011-07-12 Thread Gal Dolber
Panels do not have event handlers in general, you can use FocusPanel or force the event on the FlexTable with panel.addHandler(ClickEvent.getType(), clickHandler); On Tue, Jul 12, 2011 at 6:32 PM, seven.reeds seven.re...@gmail.com wrote: Hi, gwt: 2.3.0 eclipse: 3.6.2 I must be doing

Gwt touch ui

2011-07-08 Thread Gal Dolber
Is anyone doing some open source work on gwt + touch ui? This demo is totally incredible http://dev.sencha.com/deploy/touch/examples/kitchensink/ We must have this implemented with gwt -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/

Re: Gwt touch ui

2011-07-08 Thread Gal Dolber
Hi Alain, touch support with flash? do you mean only for android devices? On Fri, Jul 8, 2011 at 3:27 AM, Alain Ekambi jazzmatad...@googlemail.comwrote: gwt4air 2.2 will actually have a Gwt Touch module Stay tuned :) 2011/7/8 Gal Dolber gal.dol...@gmail.com Is anyone doing some open

Re: Gwt touch ui

2011-07-08 Thread Gal Dolber
great news! thanks Alain On Friday, July 8, 2011, Alain Ekambi jazzmatad...@googlemail.com wrote: Not Flash.Pure Gwt based solution 2011/7/8 Gal Dolber gal.dol...@gmail.com Hi Alain,touch support with flash? do you mean only for android devices? On Fri, Jul 8, 2011 at 3:27 AM, Alain Ekambi

Recursive Editors

2011-07-07 Thread Gal Dolber
to avoid the infinite loop of instantiation, you need to instantiate the child editor under demand, only when needed On Thursday, July 7, 2011, Jeff Larsen larse...@gmail.com wrote: I'm trying to build an editor where it can have a collection of itself. For example, I have an object Foo

Re: how to get iphone-like changing view animation

2011-07-02 Thread Gal Dolber
You can use the LayoutPanel to do that kind of animations, http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html On Sat, Jul 2, 2011 at 10:24 AM, dadada ytbr...@gmail.com wrote: Hi all, I am looking for a library to do the above. I know about gwt-fx and gwt-jquery. Is there

Re: How do you guys solve this problem?

2011-07-01 Thread Gal Dolber
which is just id and name But I had a similar need some time ago and I found it better to use gwt-rpc for that specific case, although the app uses mainly requestfactory On Thu, Jun 30, 2011 at 8:38 PM, Gal Dolber gal.dol...@gmail.com wrote: Imagine an example: let say I want to show

How do you guys solve this problem?

2011-06-30 Thread Gal Dolber
Imagine an example: let say I want to show in the client the following table of Sales: Id | Client | Product | Number - 1| John Doe(2) | iMac 27'(23)| 1 2| Chris More(3)

Re: Error when run in Eclipse in Mac

2011-06-29 Thread Gal Dolber
Can you copypaste the gwt module file that its failing? It should be gov.senasa.embalajemadera.EmbalajeMadera.gwt.xml On Wed, Jun 29, 2011 at 12:24 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Any ideas? 2011/6/29 Juan Pablo Gardella gardellajuanpa...@gmail.com Hi folks,

Re: Error when run in Eclipse in Mac

2011-06-29 Thread Gal Dolber
=CssResource.style value=pretty/ /module 2011/6/29 Gal Dolber gal.dol...@gmail.com Can you copypaste the gwt module file that its failing? It should be gov.senasa.embalajemadera.EmbalajeMadera.gwt.xml On Wed, Jun 29, 2011 at 12:24 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote

Any guide to make our generators cacheable?

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

Re: Ext GWT 3.0 Developer Preview 1

2011-06-16 Thread Gal Dolber
Guaw, for the first time I'm interested! looks really promising On Thu, Jun 16, 2011 at 7:31 PM, Flori floon...@googlemail.com wrote: For anyone who can no longer expect it: http://www.sencha.com/blog/ext-gwt-3-dev-preview-1/ Looks promising. Waiting for the first RC... ;) -- You received

Re: Overnight chrome extension with gwt: Gmail Instant Browsing

2011-06-08 Thread Gal Dolber
New version with facebook and twitter support + other features! On Tue, Jun 7, 2011 at 7:15 PM, Alain Ekambi jazzmatad...@googlemail.comwrote: works great thank you 2011/6/7 Gal Dolber gal.dol...@gmail.com Google forgot the sharing part of the chrome store. Try this link: https

Re: Holy Cow! GWT Designer comes up quick in 2.4 beta?!?!

2011-06-08 Thread Gal Dolber
Could be because of this?: #GWT https://twitter.com/#!/search?q=%23GWT trunk watch: Google projects seeing 30-40% dev mode speedup with http://gwt-code-reviews.appspot.com/1448801/ On Wed, Jun 8, 2011 at 9:44 AM, cri chuck.irvine...@gmail.com wrote: I just installed GPE 2.4 beta and it sure

Overnight chrome extension with gwt: Gmail Instant Browsing

2011-06-07 Thread Gal Dolber
Here is a small extension I did last night: https://chrome.google.com/webstore/detail/fpjmoncpngjdjjmdehlfcljjpmfhkpja I love the new twitter app on ipad, in special the internal browser, so I copied it to work on gmail. Enjoy! -- Guit: Elegant, beautiful, modular and *production ready* gwt

Re: Overnight chrome extension with gwt: Gmail Instant Browsing

2011-06-07 Thread Gal Dolber
Google forgot the sharing part of the chrome store. Try this link: https://chrome.google.com/webstore/detail/fpjmoncpngjdjjmdehlfcljjpmfhkpja?hl=en On Tue, Jun 7, 2011 at 11:49 AM, Alain Ekambi jazzmatad...@googlemail.comwrote: Error Unknow application 2011/6/7 Gal Dolber gal.dol...@gmail.com

Re: Re: New GWT /App engine site

2011-05-31 Thread Gal Dolber
Looks really nice! A few things: - Its taking too long to load the results on a the 'list view' and there is no loading animation - The popups on the maps are collapsing - Same as point 1 for many other places, add loading feedback wherever you hit the server Regards On Tue, May

Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Gal Dolber
In real its ok what you are doing(in theory Widget should be used only when you need events), but the truth is that gwt's panels don't have any support for UiObjects so you need to use Widget. On Thu, May 12, 2011 at 10:07 AM, Thomas Broyer t.bro...@gmail.com wrote: What I don't understand is

Re: differing search result on bing, yahoo and google.com for my gwt app

2011-05-08 Thread Gal Dolber
Gwt don't have any built-in SEO support, Google is the only one supporting ajax crawling at the moment, here is the specification: http://code.google.com/intl/es/web/ajaxcrawling/docs/getting-started.html On Sun, May 8, 2011 at 2:26 AM, dadada ytbr...@gmail.com wrote: Hi all, So i did a

Re: When jquery meets gwt : GwtQuery 1.0.0 was released !

2011-05-03 Thread Gal Dolber
Really nice to hear news about GwtQuery! thank for the release On Tue, May 3, 2011 at 12:41 PM, Julien Dramaix julien.dram...@gmail.comwrote: On behalf of the GwtQuery team, it is my pleasure to annonce the first release of GwtQuery, after a long snapshot period. GwtQuery is a GWT port of

Emulating KeyFactory.keyToString in gwt?

2011-05-03 Thread Gal Dolber
Can be done? -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- 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: Client/Server serialization/deserialization for using Hibernate with GWT

2011-05-03 Thread Gal Dolber
I have the same problem. In my project I override AbstractSerializationStreamWriter and got everything working. Works great, but its an ugly solution. A cleaner way to support hibernate will be really nice to have. On Tue, May 3, 2011 at 1:05 PM, tkrhkrb thb.rich...@gmail.com wrote: Hello

Help wanted: guit maven support

2011-04-23 Thread Gal Dolber
http://code.google.com/p/guit/issues/detail?id=38 All code generation is working now for a maven project. Including the validation plugins. I will really appreciate help for moving guit to maven. I tried, but my maven experience is really limited. Anyone interested on contributing with this

Re: how to draw a line using gwt?

2011-04-23 Thread Gal Dolber
http://gwtcanvasdemo.appspot.com/ On Sat, Apr 23, 2011 at 10:54 AM, 剑涛 何 hejiant...@gmail.com wrote: if there are two coordinates -p1:(x1,y1),p2:(x2,y2) in the browser ,how to draw an arrow from p1 to p2? -- You received this message because you are subscribed to the Google Groups Google

Re: Return false in Window.confirm(msg) in GwtTestCase

2011-04-18 Thread Gal Dolber
You can hide Window behind an interface and use a Mock for your tests public interface Window { boolean confirm(String msg); } public class WindowImpl implements Window { public boolean confirm(String msg) { return com.google.gwt,user.client.Window.confirm(msg); } } public

why JAbstractMethod getAnnotations method is protected?

2011-04-17 Thread Gal Dolber
com.google.gwt.dev.javac.typemodel.JAbstractMethod Anyone has idea why this methods are protected? I have been working around this for a year already, but it will be really useful to have access to the annotations of a method. /** * NOTE: This method is for testing purposes only.

Re: MVP and boilerplate code

2011-04-15 Thread Gal Dolber
Use guit :) zero boilerplate On Fri, Apr 15, 2011 at 11:25 AM, Magno Machado magn...@gmail.com wrote: When using the MVP framework built in GWT it seems that we have to write a lot of boilerplate code. Is it on the plans of GWT to improve it? Any work in progress? Or will it stay as it is

  1   2   3   4   >