Re: iTunes-type display widget

2011-01-01 Thread Gal Dolber
gt; > > On Jan 1, 3:22 am, Gal Dolber wrote: > > Sure, you can do that with the new CellTable. > > > > Best > > > > > > > > On Sat, Jan 1, 2011 at 2:18 AM, jaybose wrote: > > >http://picasaweb.google.com/onyeje.bose/12302010#55570975075464

Tutorial 1: Getting started with guit framework. 2:30 minutes video

2011-01-02 Thread Gal Dolber
http://www.youtube.com/watch?v=S_u7CkU_NnI -- 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: Tutorial 1: Getting started with guit framework. 2:30 minutes video

2011-01-03 Thread Gal Dolber
o use MVP > but have been having some trouble getting it setup. > > On Jan 2, 3:37 pm, Gal Dolber wrote: > > http://www.youtube.com/watch?v=S_u7CkU_NnI > > > > -- > > Guit: Elegant, beautiful, modular and *production ready* gwt > applications. > > > >

Re: How to get a widget from another panel

2011-01-03 Thread Gal Dolber
Some code will help On Mon, Jan 3, 2011 at 11:07 AM, Greg Dougherty wrote: > Well, assuming both panels are in the same web application, save the > widget in a global variable, and access that when you want > information. > > Greg > > On Jan 3, 8:49 am, Néstor Boscán wrote: > > Hi > > > > Thanks

Re: Tutorial 1: Getting started with guit framework. 2:30 minutes video

2011-01-03 Thread Gal Dolber
No, sorry, my spoken english sucks... no that I write very good :) .. I am from Argentina On Mon, Jan 3, 2011 at 11:41 AM, Falcon wrote: > Out of curiosity, is there supposed to be audio? > > On Jan 2, 2:37 pm, Gal Dolber wrote: > > http://www.youtube.com/watc

Re: is there a class that implements HasWidgets & extends FocusWidget

2011-01-04 Thread Gal Dolber
You can also wrap a FlowPanel into a FocusPanel. On Tue, Jan 4, 2011 at 2:54 PM, Y2i wrote: > A Widget.addDomHandler() method may be what you are looking for. You > can register a handler for com.google.gwt.event.dom.client.ClickEvent. > > On Jan 4, 9:43 am, Joe Hudson wrote: > > Hi, > > > > I

Tutorial 2: Unit testing with guit

2011-01-04 Thread Gal Dolber
http://www.youtube.com/watch?v=QjJ25A08sOY -- 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: [gwt-contrib] Enterprise CellTable Questionnaire

2011-01-05 Thread Gal Dolber
so happy to hear that! On Wed, Jan 5, 2011 at 6:55 PM, John LaBanca wrote: > > https://spreadsheets.google.com/viewform?formkey=dEx3b0M4cHdSbG5Pd29KSjZxVnFnU3c6MQGWT > Contributors - > > In the next couple of months, the GWT team will create add enterprise > features to the CellTable and will ev

Move a pojo to the serve side package (RCP)

2011-01-07 Thread Gal Dolber
Slim3 recently got Appengine core data types emulation for gwt & rpc support(still on trunk). Not sure what persistence layer you are using. But if you need to work with Book on the client and want to use gae Text type, I think the only solution is to make it gwt compatible. Best On Friday, Janu

Re: Move a pojo to the serve side package (RCP)

2011-01-07 Thread Gal Dolber
need to work with Book typed gae > Text in the client. When you say: "The only solution is to make it gwt > compatible". > > Can you please explain to me how to make it gwt compatible. > > Thank you in advanced. > > -- > Ces. > > > On 7 January 2011 18:17,

Re: are GWT 2.1.1 Activities expensive to create/instantiate ?

2011-01-07 Thread Gal Dolber
In theory: no. The heavy part is the view. If you instantiate 150 activities without instantiating the views you wont have problems. The best you can do is benchmark it. Best On Sat, Jan 8, 2011 at 12:11 AM, zixzigma wrote: > Are GWT 2.1.1 Activities expensive to create ? > > Activities are ma

Re: is it possible to instantiate an object from its class type on demand ?

2011-01-07 Thread Gal Dolber
Gwt doesn't support that. GWT.create() only works with class literals. If you know what classes you'll need you can write a method like this: T instantiate(Class clazz) { if (clazz.equals(Foo.class)) { return new Foo(); } else if (clazz.equals(Foo2.class)) {

Re: Best Design Pattern for widgets

2011-01-07 Thread Gal Dolber
mmm... 1. Use Composite! 2. Reduce to the minimum the number of widgets that compose your new widget (Bulk html rendering + top level event capturing). 3. Learn all you can from native gwt widgets. 4. Make good use of interfaces [HasText, HasHTML, Foccusable.. everything you can

Re: oadmap of gwt

2011-01-07 Thread Gal Dolber
I think this is the only roadmap you'll find: http://code.google.com/p/google-web-toolkit/issues/list?can=2&q=milestone=Planned&colspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Stars Best On Sat, Jan 8, 2011 at 1:01 AM, dadada wrote: > Hi all, > > does anybody know where i can find t

Re: Question regarding Activites, Places, Dependeny Injection and complex layouts.

2011-01-08 Thread Gal Dolber
Guit have built-in gin support. You should try it Best On Sat, Jan 8, 2011 at 6:11 AM, Max wrote: > + 1 > > Frank, do you find out the answer finally? > > On 1月3日, 下午5时41分, Frank Bølviken wrote: > > Noone has anything to add on this subject? This should really be a > > basic structure of most

Re: Best pattern for handling app engine datastore errors when using GWT RemoteService

2011-01-11 Thread Gal Dolber
I only let pass user-defined exceptions to the client. Best On 1/11/11, Jeff Schwartz wrote: > What do you think is the best code pattern for servlet and client when > dealing with app engine datastore errors using GWT RemoteService? Do you > catch the errors in your servlets or do you let them f

Re: GWT sometimes reinventing the wheels

2011-01-11 Thread Gal Dolber
Gwt didn't support java logging since recently, cause some limitations on the compiler. I agree with you on the uibinder + i18n, that could be much simpler. I am using apt on guit to make that simpler (http://code.google.com/p/guit/source/browse/trunk/GuitPlugin/src/guitplugin/I18nProcessor.java?r=

Re: GWT 2.1 compiler takes 45-50 minutes to compile with multi-language support tags

2011-01-11 Thread Gal Dolber
Your normal compilation produces in general 6 permutations (safari, gecko, gecko1.8, opera, ie6, ie8). with 3 locales you get 6 * 3 = 18 permutations and the number of permutations affects directly to the compilation time. Is your normal compilation time 15 minutes? On 1/11/11, Jeff Larsen wrote:

Re: uibinder -webkit style escaping issue

2011-01-25 Thread Gal Dolber
.yourStyle { \-webkit-box-reflect: literal("below 2px -webkit-gradient(linear,left top, left bottom, from(transparent),color-stop(0.85,transparent,to(white))"); } On Wed, Jan 26, 2011 at 1:50 AM, krishna wrote: > > > Hi All, > > I want to use the below style in ui.xml file. > > -webkit-b

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread Gal Dolber
Yes, it is possible, every rpc call is asyc, so if you call two rpc methods one after the other they'll be executed in parallel. In general it is better to batch the "parallel" methods in one rpc call. On Thu, Jan 27, 2011 at 1:41 PM, joe kolba wrote: > Why not just make one call to a service an

Re: Two parallel asynchronous rpc calls possible?

2011-01-27 Thread Gal Dolber
nd all > server requests and that is only one of numerous use cases that I can think > of that could benefit from using parallel async calls. > > Jeff > > On Thu, Jan 27, 2011 at 11:46 AM, Gal Dolber wrote: > >> Yes, it is possible, every rpc call is asyc, so if you cal

Gin, SingleInstanceProvider?

2011-02-02 Thread Gal Dolber
I writing over and over again the same code: @Inject public Provider provider; private Foo foo; Foo assertFoo() { if (foo == null) { foo = provider.get(); } return foo; } Basically I inject a provider to delay the object instantiation, but in most cases I only need one insta

Re: Text property on app engine and TextArea on the client side [GWT]

2011-02-02 Thread Gal Dolber
I think it will be better to use String, but if you really want to use Text you can borrow some code from slim3 http://code.google.com/p/slim3/source/browse/trunk/slim3/src/main/java/com/google/appengine/api/datastore/Text_CustomFieldSerializer.java to do it. Best On Thu, Feb 3, 2011 at 3:51 AM,

Re: Gin, SingleInstanceProvider?

2011-02-03 Thread Gal Dolber
Yes, I know about singletons. This is not the case. What I am talking about is delayed instantiation. In most of my current use cases the binded object aren't singletons. On Thu, Feb 3, 2011 at 5:03 AM, Ryan Mehregan wrote: > yes, it is totally unnecessary. > > 1- you can annotate your Foo clas

Re: Gin, SingleInstanceProvider?

2011-02-03 Thread Gal Dolber
No idea why you answer 3 times the same, but please read again my question. I am using providers. As I already imagined gin doesn't have what I need. I was looking for other solutions people were using. What I need is: A provider of a non-singleton class that return always the same instance. I am

Re: Gin, SingleInstanceProvider?

2011-02-03 Thread Gal Dolber
If I inject a provider on 2 different classes I expect them to return a different instance, but each provider must return the same one. class A { @Inject public Provider p; // p.get() returns always the same instance } class B { @Inject public Provider p; // p.get() returns always

Re: Gin, SingleInstanceProvider?

2011-02-03 Thread Gal Dolber
Sorry, the example should be with "SimpleInstanceProvider", not with "Provider" On Thu, Feb 3, 2011 at 6:05 PM, Gal Dolber wrote: > If I inject a provider on 2 different classes I expect them to return a > different instance, but each provider must return

Re: Gin, SingleInstanceProvider?

2011-02-03 Thread Gal Dolber
Thanks On Thu, Feb 3, 2011 at 7:02 PM, zixzigma wrote: > I am not sure if this helps, > but there is a feature called Binding Annotations, > you can use BindingAnnotation to differentiate the Provider used in Class > A, > from the one used in Class B. > > http://code.google.com/p/google-guice/wi

Re: Gin, SingleInstanceProvider?

2011-02-05 Thread Gal Dolber
vider returns always the same instance } On Thu, Feb 3, 2011 at 7:40 PM, Gal Dolber wrote: > Thanks > > > On Thu, Feb 3, 2011 at 7:02 PM, zixzigma wrote: > >> I am not sure if this helps, >> but there is a feature called Binding Annotations, >> you can use

GwtDesigner questions

2011-02-12 Thread Gal Dolber
I just starting to use gwt designer, and I having a few problems: 1. I cannot find a way to include an external css file that my app uses into the uibinder editor, so I see only the inner styles of my uibinder. 2. Is the inner UiBinder class really required? Guit uses uibinder's .ui.xm

Re: GWT-2.2.0 - UiBinder

2011-02-16 Thread Gal Dolber
UiBinder doesn't have to support extgwt. The problem is that extgwt doesn't support uiBinder. On Wed, Feb 16, 2011 at 2:39 AM, neps wrote: > Is the gwt-2.2.0 uibinder have the support to external sources like > Extgwt versions. > or has anyone solved it already..? > > -- > You received this mes

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-17 Thread Gal Dolber
+1 for me. IE support is still important, but I don't see how the final user gets benefit from emulated roundedCorners/shadows/gradients when he probably only using IE (so he will never tell the difference) and the extra markup ends up slowing down the app. This problem gets ever worst when the imp

Re: Feedback Requested: Preview of new GWT Style Theme

2011-02-22 Thread Gal Dolber
Look at the buttons On Tue, Feb 22, 2011 at 5:26 PM, Evan Ruff wrote: > John, > > Did I speak too soon? Looking at the two showcases, they appear identical > in my browser: > > http://gwt-showcase-clean.appspot.com/#!CwCheckBox > > http://gwt.google.com/samples/Showcase/Showcase.html#!CwCheckBox

Re: UIBinder changing element attributes

2011-02-23 Thread Gal Dolber
Every attribute is turned into a setter. The HTML Widget do not have a setClass method, but you can use "styleName" or "width" On Wed, Feb 23, 2011 at 8:55 AM, Vinicius Carvalho < viniciusccarva...@gmail.com> wrote: > Hello there! > > How do I change the attributes (size and wi

Re: UiBinder doesn't autocomplete anymore in Eclipse

2011-02-24 Thread Gal Dolber
If you open the .ui.xml file with the UIBInder Template Editor instead of the WindowBuilder Editor it works ok. Right click -> Open with -> UIBInder Template Editor On Thu, Feb 24, 2011 at 3:25 PM, jhudon wrote: > Where can we track this issue or get a completion ETA? > > -- > You received this

Re: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-01 Thread Gal Dolber
Guit doesn't use any of those patterns. In guit mvp is like uiBinder (only two files, one ui.xml and one java). *Login.ui.xml (this is what you already know):* http://dl.google.com/gwt/DTD/xhtml.ent";> Username Password Login *Login.java (this is a presenter on guit):* @GwtPr

Re: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-02 Thread Gal Dolber
The official UiBinder docs are valid for guit, the ui.xml part is 100% valid but the java part of the docs is not, you can easily translate it. http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html *@UiField -> @ViewField* The difference between this two is that a @UiField can be of

Re: How to access ui:image programmatically

2011-03-10 Thread Gal Dolber
@UiField ImageResource icon_check; On Fri, Mar 11, 2011 at 3:41 AM, Kathiravan Tamilvanan wrote: > I have defined my image resources in the ui binder as follows > > > > I can use this inside the ui binder file successfully. How to access the > same image resource programmatically to set it on a

Re: Hyperlink: Why the anchor element is nested into a div ?

2011-03-12 Thread Gal Dolber
I don't know the why, but you can use InlineHyperlink instead. On Sat, Mar 12, 2011 at 1:17 PM, Simon M wrote: > I am curious to know. > > -- > 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-we

Re: ScriptElement to be shown in popupPanel

2011-03-12 Thread Gal Dolber
What are you trying to do? You can try: popup.addAttachHandler(new AttachHandler() { void onAttach() { // Do your scripting here } }); On Sat, Mar 12, 2011 at 2:15 PM, Deepak Singh wrote: > Hi, > > The src of an script return a form as UI and i want this UI to be shown in > popu

Re: ScriptElement to be shown in popupPanel

2011-03-12 Thread Gal Dolber
popUp.setWidget(new HTML("

Re: DropDown Button

2011-03-14 Thread Gal Dolber
This is what I am using, you can put anything inside the PopupButton and it will be the popup content. /** * How to use: * Settings Logout */ public class PopupButton extends Composite implements HasWidgets { private final Button button = new Button(); private Eleme

Re: DropDown Button

2011-03-14 Thread Gal Dolber
that looks pretty ugly in the email, here is the pastebin http://pastebin.com/rqgZk9D0 On Mon, Mar 14, 2011 at 5:28 PM, Gal Dolber wrote: > This is what I am using, you can put anything inside the PopupButton and it > will be the popup content. > > > /** &g

Re: Compiled GWT JS size > handwritten JS size?

2011-03-15 Thread Gal Dolber
I have been working with gwt for more than 2 years now and I can't imagine a page where I won't use gwt. If you really try you may find some cases where handwritten js produce a smaller page than gwt. It is also probable than in the small size of that cases the difference won't matter. But I doubt

Guit Release. Version 1.6

2011-03-22 Thread Gal Dolber
v1.6 (With support for GWT 2.2) - Deleted all deprecated binders and generator - @AutoFocus support for presenters - @ForceEvent to add any event to any widget - Pro

Re: Howto: Optimising RPC

2011-03-28 Thread Gal Dolber
Nice post, thanks. I am having a problem code-splitting my rpc classes and dependencies when using the command pattern. Even if I only load the login screen, if it uses any command rpc it forces my apps to load all of them. I am testing some solutions at the moment, any thoughts on that? On Mon, M

Alguien de Argentina?

2011-03-29 Thread Gal Dolber
-- 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 google-web-toolkit@googlegroups.com. To uns

Re: Alguien de Argentina?

2011-03-29 Thread Gal Dolber
el chiste? On Tue, Mar 29, 2011 at 9:16 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > jajaj > > 2011/3/29 Gal Dolber > >> >> >> -- >> Guit: Elegant, beautiful, modular and *production ready* gwt applications. >> >> ht

Re: Howto: Optimising RPC

2011-03-30 Thread Gal Dolber
Another two optimizations on the compiler (the first one affects gwt-rpc): -XdisableClassMetadata EXPERIMENTAL: Disables some java.lang.Class methods (e.g. getName()) -XdisableCastChecking EXPERIMENTAL: Disables run-time checking of cast operations On Tue, Mar 29, 2011 at 12:53 PM, Paul

Re: Alguien de Argentina?

2011-03-30 Thread Gal Dolber
Hola Gabriel, ahi te escribi por mail. Tan pocos argentinos en la lista? On Wed, Mar 30, 2011 at 8:19 AM, Gabriel wrote: > Yo soy de Bs. As. cuál es el motivo de la pregunta? > > Saludos! > > On 29 mar, 21:24, Gal Dolber wrote: > > el chiste? > > > > On T

hudson + soyc trend?

2011-03-30 Thread Gal Dolber
Where anyone able to plug hudson with a Soyc Trend? like the Checkstyle plugin? It will be great to control that metrics over time. Thanks -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are

Re: Testing performance: widgets vs elements+bubble, widgets win?

2011-04-03 Thread Gal Dolber
I made the tests on macos, I will try a micro benchmark. Thanks! On Sun, Apr 3, 2011 at 6:12 AM, Thomas Broyer wrote: > Have a look at the commit log for > http://code.google.com/p/google-web-toolkit/source/detail?r=9925 > Also, System.currentTimeMillis() (which uses (new Date).getTime() in > Ja

Re: Post about creating a Facebook app with Google App Engine and Google Web Toolkit in Java

2011-04-04 Thread Gal Dolber
Nice post, thanks! On Mon, Apr 4, 2011 at 4:18 PM, erezmazor wrote: > Hi, > > I wrote a post about a how to write an introductory Facebook app with > Google App Engine and Google Web Toolkit using Eclipse with the Google > plugin. You can find it in my blog: > > > http://techo-ecco.com/blog/crea

Re: TextBox KeyPressEvent doesn't function in Firefox 4

2011-04-07 Thread Gal Dolber
Try with KeyDown/KeyUp instead On Thu, Apr 7, 2011 at 10:38 AM, Gabriel Volpe wrote: > Eg. > > txtPwd.addKeyPressHandler(new KeyPressHandler() { > @Override > public void onKeyPress(KeyPressEvent event) { > if (event.getCharCode() == KeyCodes.KEY_ENTER) { > btnLogin.click(); > } > } > }); > >

Re: For UIBinder,how to react event when creating UI based on HTML?

2011-04-08 Thread Gal Dolber
The difference between Widget and UiObject is that a Widget can handle events and a UiObject can't On Fri, Apr 8, 2011 at 4:28 AM, Alex Luya wrote: > sinkEvents() and onBrowserEvent() only work for Widget,so How can I get > UIObject react event? > > -- > You received this message because you are

Re: GWT 2.2 CellTable dragging column widths with mouse ...

2011-04-08 Thread Gal Dolber
why would you want to render 10 rows? :) On Fri, Apr 8, 2011 at 4:02 AM, Musicman75 wrote: > @Sky > Nice idea to include resizing on mouse dragging. > > Any implementation available? > I checked out the ScrollTable from incubator, but it's too slow > (rendering with more than 10 rows is i

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

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

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 chang

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, 剑涛 何 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 Web Toolkit" gr

Re: Aw: what kind of MVP to use, what is "current" best practice

2011-04-27 Thread Gal Dolber
As everyone already said, gwt places/activities is a history management implementation, gwt at the moment doesn't include any mvp implementation. That doesn't mean that the way to go with mvp is by-hand. I am sure that if in the future gwt would include GWTP or any other framework everyone would us

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 wrote: > 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 jQuery and offers plent

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 google-web-toolkit@googlegrou

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 wrote: > Hello GWTers, > > I'm working on

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 wrote: > Hi all, > > So i did a simple gwt for my pe

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 wrote: > What I don't understand is why Stat is not a W

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 3

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 appli

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 wrote: > Error Unknow application > > 2011/6/7 Gal Dolber > >> Here is a small ex

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 wrote: > works great > thank you > > > 2011/6/7 Gal Dolber > >> 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 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 wrote: > I just installed GPE 2.4 beta and it sure seems to me that GWT > De

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 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 this message bec

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 t

Re: Error when run in Eclipse in Mac

2011-06-29 Thread Gal Dolber
Can you copy&paste 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 > >> Hi folks, >> >> When run in Ecl

Re: Error when run in Eclipse in Mac

2011-06-29 Thread Gal Dolber
re.gwt.dispatch.Dispatch' /> > > > > name='eu.maydu.gwt.validation.ValidationLibrary' /> > > class='...' /> > > > > > > > > >

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: How do you guys solve this problem?

2011-07-01 Thread Gal Dolber
proxy for Client 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 wrote: &

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 wrote: > Hi all, > > I am looking for a library to do the above. I know about gwt-fx and > gwt-jquery. Is there something else? >

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 wrote: > I'm trying to build an editor where it can have a collection of itself. > > For example, I have an object Foo > > class Foo{ >     S

Gwt touch ui

2011-07-07 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 wrote: > gwt4air 2.2 will actually have a Gwt Touch module > Stay tuned :) > > 2011/7/8 Gal Dolber > >> Is anyone doing some open source work on gwt +

Re: Gwt touch ui

2011-07-08 Thread Gal Dolber
great news! thanks Alain On Friday, July 8, 2011, Alain Ekambi wrote: > Not Flash.Pure Gwt based solution > > 2011/7/8 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 > wrote: > g

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 wrote: > Hi, > > gwt: 2.3.0 > eclipse: 3.6.2 > > I must be doing something wrong. I ha

ConditionalProperties

2011-07-13 Thread Gal Dolber
Hi, Is this working already? http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties I made a small project example but when I compile it I get only 6 permutations, when I should get 8? (5 other browsers + (safari * mobile.user.agent))? the documentation says

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(); textboxField.getElement().dispatchEvent

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

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 wrote: > My tentative understanding of MVP versus MVC is that, wi

Re: ConditionalProperties

2011-07-19 Thread Gal Dolber
nobody? On Wed, Jul 13, 2011 at 7:47 PM, Gal Dolber wrote: > Hi, > Is this working already? > http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties > > > > > > > > > > > > > > > > > > > >

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. {{{ }}} Shouldn't this be enough to get an extra 12 permutation (18 in total)? I am getting only 6 On Tue, Jul 19, 2011 at 11:15 AM, Thomas Broyer wrote: > It is working. Apache W

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 On Tue, Jul 19, 2011 at 7:33 PM, Thomas Broyer wrote: > Could it be that GWT optimizes the case where the property isn't used in > any or rule

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 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! > http://www.visualfox.me/app/visualfox-fx > > And gr

Re: Frustrated with GWT

2011-07-24 Thread Gal Dolber
Maybe the uppercases? try this: /timesheettracking/timesheetlogin On Sat, Jul 23, 2011 at 9:16 PM, edprog 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 > > > Error 404 NOT_FOUND > > HTTP ER

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

2011-07-25 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 wrote: > >> 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. Here's the settings tha

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

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 wrote: > I have a requirement to turn some financial fields into masked fields > and I wanted to use t

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

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

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

2011-08-01 Thread Gal Dolber
2011 at 9:22 AM, Deepak Singh wrote: > 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 wrote: &

<    1   2   3   4   >