Re: Two generator questions

2010-03-20 Thread Gal Dolber
Ok, To view the generated class compile with -gen /somepathonyourdisk, another tip to debug a generated class: include in your lookup entries the folder where the generated classes are and you will be able to step through the generated code. And to use gin into your generated class I didn't

Re: Two generator questions

2010-03-21 Thread Gal Dolber
decided to rework my generated class to use method injection instead of constructor injection and it seems to work very well! Cheers, Philippe On Mar 20, 7:31 pm, Gal Dolber gal.dol...@gmail.com wrote: Ok, To view the generated class compile with -gen

Re: Irony: GWT Showcase demo does not work with Chrome

2010-04-08 Thread Gal Dolber
me too 2010/4/8 Katharina Probst kpro...@google.com It works for me - I have Chrome 5.0.342.9 on Mac OS X ... kathrin On Wed, Apr 7, 2010 at 10:33 PM, Unconquered newintellect...@gmail.comwrote: With the latest Chrome, running on Mac OS X, the Google Web Toolkit Showcase of Features at

HorizontalLayoutPanel (no tables)

2010-04-10 Thread Gal Dolber
Goals: - No tables, divs only - No javascript execution on browser resize - Predictable: all children have the same size unless you set the size of a child manually - Can set the size of a child in % or PX(here you get the proportional %: pxWidth * 100 / fatherOffsetWidth) - Margin, Padding and

Re: session.setAttribute in GWT

2010-04-19 Thread Gal Dolber
This is not an gwt question. Are you talking about Appengine? If so, session attributes are allowed. But they must be Serializables. 2010/4/18 davids dudishe...@gmail.com Hi we had a problem setting the user attribute into the session: if you want to use for Session support, ENABLE it in

Re: Layouting pages based on tables vs CSS layouts

2010-04-21 Thread Gal Dolber
Here is a new approach implemented with divs: code.google.com/p/google-web-toolkit/issues/detail?id=4844can=4 http://code.google.com/p/google-web-toolkit/issues/detail?id=4844can=4It is a linearLayoutPanel and you can use as horizontal or vertical. If you combine it with the docklayoutpanel and

Re: Resizing DockLayoutPanel child.

2010-05-02 Thread Gal Dolber
package com.google.gwt.user.client.ui; import com.google.gwt.user.client.ui.DockLayoutPanel.Direction; import com.google.gwt.user.client.ui.DockLayoutPanel.LayoutData; /** * Dock layout util. */ public final class DockLayoutUtil { /** * Set layout. * @param widget Widget *

Re: Alternatives for gwt?

2010-05-05 Thread Gal Dolber
did you tried the native ones? or doing it yourself? 2010/5/5 flyingb...@gmail.com flyingb...@gmail.com I am wondering are there good alternative libraries like smartgwt/gxt. I am looking for better libraries to code with if there are any. -- You received this message because you are

Re: Question about GWTEvent.Type

2010-05-06 Thread Gal Dolber
You can make a generic Event and it will work on a HandlerManager. For an example see ValueChangeEvent? in gwt source code. 2010/5/6 Thomas Broyer t.bro...@gmail.com On May 6, 3:05 pm, Julio Faerman jfaer...@gmail.com wrote: Hello, Is it possible to define event subtypes ? I would like

Re: How can we use cases can utilize Java generics to replace the use of Object instances.

2010-05-06 Thread Gal Dolber
You can define an empty interface and make it serializable so the ArrayListYourInterface will be serializable. Then be sure that every object you want to put into that collection implement that interface. 2010/5/4 Love Yao wmainl...@gmail.com The class java.lang.Object is not serializable,

Re: What is the largest GWT program anyone is running?

2010-05-07 Thread Gal Dolber
I think 500kb (on each splitted part) is the limit for a decent experience. 2010/5/7 Sripathi Krishnan sripathikrish...@gmail.com 1. Adwords is not a monolithic GWT compile; it is made up of multiple GWT modules. 2. Google Wave seems a single GWT module, but is sluggish. Maybe its

Re: GWT and Objectify

2010-05-08 Thread Gal Dolber
Annotations just work on gwt... there is nothing to emulate 2010/5/8 Dalla dalla_man...@hotmail.com Hi all I´m trying to understand how to use Objectify with GWT. In the features list you can read Objectify entities can be used in GWT without the need for Data Transfer Objects. Sounds

Re: Unnormal behavior while using native redirect-Methode?

2010-05-11 Thread Gal Dolber
try this (in java): Window.Location.blabla 2010/5/10 malibubu webmas...@mailball.de Hi @all... I'm calling my EntryPoint using the URL http://localhost:8080/testdesk/. I've implemented the following native Method to redirect to another page: static native void redirect(String

Re: Let users build a user interface in the browser

2010-05-14 Thread Gal Dolber
I am working on that. My idea its to get an interface like DashCode. This is what I got: - List of all widgets (even created by the user) - You can insert the widgets - You see the real composite while you add widgets - You can select a widget and edit his properties in a property

Re: Debugging generated classes

2010-05-15 Thread Gal Dolber
Add this parameter to the luncher: -gen /{SomeDir} Then when you step through the code and get into the generated class press Attach source and select the {SomeDir} 2010/5/15 Stefan Bachert stefanbach...@yahoo.de Hi, is there a way to debug through generated classes? How to supply the

Re: MMLc: a Tool to convert HTML in GWT widgets

2010-05-24 Thread Gal Dolber
THanks! 2010/5/24 Duong BaTien duong.bat...@gmail.com Congrats: Will MMLc support GWT Rich Text and client, soon to be open source by Google Wave client? Will that be a beginning of massive templates designed by UI designers and assembled by user? Duong BaTien DBGROUPS and BudhNet On

Re: UIBinder, Refresh and binding

2010-05-25 Thread Gal Dolber
If you are looking for a two lines solution, this is the wrong place... But still what you want to do its possible.. take a look at the UiBinder generator code and make your own binder 2010/5/25 Artem nikulche...@gmail.com Hi! I am really enjoin using of UIBinder! But still some of my code

Re: DockLayoutPanel inside a ScrollPanel

2010-06-15 Thread Gal Dolber
You need to set the docklayoutpanel's height and width. 2010/6/14 Elben Shira elbensh...@gmail.com Hi, I have a layout defined by: - ... - ScrollPanel - DockLayoutPanel - north - west - center - east The problem is that the dock layout panel is cut off from

Re: Best way to Deserialize JSON String to Java Object

2010-06-18 Thread Gal Dolber
I think the best you can do is a generator that creates an overlay for that pojo and a utility class to convert a json string to the pojo. The interface will look like this: public interface Json2PojoPOJO { POJO fromJson(String json); } And the steps will be: 1. Create an POJOOverlay from

Re: Best way to Deserialize JSON String to Java Object

2010-06-18 Thread Gal Dolber
since GWT-RPC can simply send the POJO and handle all the messy bits for him. Simple is better... On Fri, Jun 18, 2010 at 9:26 AM, Gal Dolber gal.dol...@gmail.com wrote: I think the best you can do is a generator that creates an overlay for that pojo and a utility class to convert a json

Re: UIBinder Benefits?

2010-06-21 Thread Gal Dolber
Beside of how easier its to write layouts in xml instead of java and the fact that you can easily embed css, images and other resources, if you use uiBinder with HTMLPanel you will get the best effortless performance with gwt. 2010/6/20 spierce7 spier...@gmail.com thanks :-) On Jun 20, 9:39

New open source eclipse plugin for UiBinder validation

2010-06-26 Thread Gal Dolber
Here is a new eclipse plugin I made for gwt's UiBinder. My goal was to implement the validation, autocompletion and quickassist for widgets fields. Right now the only feature working is the validation. I couldn't find a way to hook the autocompletion and quickassist into google's UiBinder

Re: GWT Gmail API

2010-06-28 Thread Gal Dolber
http://code.google.com/apis/contacts/ :) 2010/6/28 charlie charlie.f...@gmail.com Googling for this yields a lot of results that are not applicable for what I'm searching for. Is there a GWT Gmail API so that given an email and password, I can see a list of their contacts ? --

Re: Hello.. A gift!!!

2010-06-28 Thread Gal Dolber
what the hell 2010/6/28 Lei Zhen zl13354...@gmail.com Dear friend, One of my good friend is having his birthday celebration very soon,and I bought a digital camera for him as a birthday gift at an international trade company www.snnsn2.com ,I received the goods today,it has very good

Re: Eclipse plugin suggestion

2010-07-04 Thread Gal Dolber
This is right, what we really need is Google to open source the plugin, but they don't want to 2010/7/4 Robert Hanson iamroberthan...@gmail.com The plugin is great, but every time I create a new application I need to go through the project and delete all of the example code. Perhaps there can

Re: MVP : model and duplicate

2010-07-07 Thread Gal Dolber
I think you should avoid duplicate the model objects. Find the way to share them between all you application or cut off one layer :P 2010/7/7 SimonM simon.manqu...@gmail.com Hi, I have some troubles with MVP : as I have understood, the model should just be business objects which are present

Re: -XdisableClassMetadata compiler flag - Was [Re: Hiding fully qualified class name sent to the browser]

2010-07-07 Thread Gal Dolber
-XdisableClassMetadata cut off from the compiled code all class metadata as SomeInstance.getClass().getName(); - this won't be available *But I am not sure that it will completely remove the classes names from the compiled code, cause it also uses them on rpc calls * 2010/7/7 moorsu

Re: -XdisableClassMetadata compiler flag - Was [Re: Hiding fully qualified class name sent to the browser]

2010-07-07 Thread Gal Dolber
Good to know! thanks! 2010/7/7 Thomas Broyer t.bro...@gmail.com On 7 juil, 15:03, Gal Dolber gal.dol...@gmail.com wrote: -XdisableClassMetadata cut off from the compiled code all class metadata as SomeInstance.getClass().getName(); - this won't be available *But I am not sure

Re: Using FormPanel to get XML data - workaround?

2010-07-08 Thread Gal Dolber
I think the best you can do is use FormPanel for multipart posts only(file upload) and make all the other request with ajax. 2010/7/8 Robert Hanson iamroberthan...@gmail.com Based on the docs for FormPanel the server has to reply with the content-type of text/html, otherwise there may be

Re: Trigger FileUpload

2010-07-08 Thread Gal Dolber
There are some hacks for input custom style, I am not sure if there's a simple way to do it in gwt. Checkout this one http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom 2010/7/8 Thiago Miranda de Oliveira thiago...@gmail.com Hi. I have a FileUpload widget and

Re: CellTable SimplePager and and UiBinder with provided=true

2010-07-11 Thread Gal Dolber
That should work... I don't remember why, but I end up doing it like this: CellTableJsBean table = new CellTableJsBean(); @UiField CrudPagerJsBean pager; @UiFactory CellTableJsBean getTable() { return table; } @UiFactory CrudPagerJsBean getPager() { return new

Re: CellTable SimplePager and and UiBinder with provided=true

2010-07-11 Thread Gal Dolber
I just tried this: @UiField(provided=true) CellTableJsBean table = new CellTableJsBean(); @UiField CrudPagerJsBean pager; @UiFactory CrudPagerJsBean getPager() { return new CrudPagerJsBean(table); } And still working ok! 2010/7/11 Gal Dolber gal.dol...@gmail.com That should work

Re: MVP Question.

2010-07-11 Thread Gal Dolber
try something like this from the presenter: view.setHandler(ViewHandler handler); interface ViewHandler { void onView(Category c); void onRemove(Category c); } whatever any one say to you, DO NOT USE GETTERS ON THE VIEW INTERFACE :) 2010/7/11 nacho vela.igna...@gmail.com Hi, i'm trying to

Re: MVP Question.

2010-07-11 Thread Gal Dolber
model :) On 11 jul, 16:15, Gal Dolber gal.dol...@gmail.com wrote: try something like this from the presenter: view.setHandler(ViewHandler handler); interface ViewHandler { void onView(Category c); void onRemove(Category c); } whatever any one say to you, DO NOT USE GETTERS

Re: Dependency injection perf issues

2010-07-12 Thread Gal Dolber
If you compile GIN from TRUNK, you will find a new AsyncProvider interface... thats the result of a GIN PROVIDER + RUNASYNC 2010/7/12 david.herv...@gmail.com david.herv...@gmail.com Hi, the fact that you are using DI does not change your startup time. Your application will take approximately

Re: Reusability of GWT UI

2010-07-12 Thread Gal Dolber
class YourSearchPanel extends Composite *implements HasClickHandlers {* * * *...* *public HandlerRegistration addClickHandler(ClickHandler handler) {* *yourSearchButton.addClickHandler(handler);* *}* * * *}* * * *And move the rpc logic out of your widget * 2010/7/12 Vik vik@gmail.com Hie I

Re: MVP Problem when implementing the presenter as singleton

2010-07-12 Thread Gal Dolber
Some code? 2010/7/12 crojay78 croja...@googlemail.com Hi, I have a problem with my mvp project. I do the binding in the constructor of each presenter, every presenter is implemented as a singleton. I do that because otherwise I discovered that the binding to the buttons, textboxes etc

Re: MVP multiple buttons/fields

2010-07-12 Thread Gal Dolber
Start moving the code of addStock to the view. Try not to use widget code on the presenter. Then create an interface and implement in the presenter: class SomeViewHandlers { void deleteStock(Stock code); } You already have the deleteStock method... so just add implements SomeViewHandlers to

Remove event handlers or not?

2010-07-12 Thread Gal Dolber
Hi, someone knows for sure if its necessary to remove event handlers when we remove a widget? will I get memory leaks if I don't? i.e: HandlerRegistration registration = button.addClickHandler(myHandler); ... // IS THIS NECESSARY? public void fakeCleanerMethodBeforeIRemoveTheWidget() {

Re: Reusability of GWT UI

2010-07-13 Thread Gal Dolber
then where will be the deciding logic ? and how exactly i will call this addClickHandler method? 1. How will i call it Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Mon, Jul 12, 2010 at 10:28 PM, Gal Dolber gal.dol...@gmail.com wrote: class YourSearchPanel

Re: Remove event handlers or not?

2010-07-13 Thread Gal Dolber
Anyone?? 2010/7/13 Gal Dolber gal.dol...@gmail.com Hi, someone knows for sure if its necessary to remove event handlers when we remove a widget? will I get memory leaks if I don't? i.e: HandlerRegistration registration = button.addClickHandler(myHandler); ... // IS THIS NECESSARY? public

Re: How to write good performance code?

2010-07-13 Thread Gal Dolber
Are you serious? If you are *creating the buttons dynamically* and you can declare the clickHandler as a field it will be faster cause you will be avoiding the handler instantiation every time... but I don't think that choice will have a performance impact.. 2010/7/13 cody lse...@gmail.com

Re: Remove event handlers or not?

2010-07-14 Thread Gal Dolber
Thanks! good to hear that! 2010/7/14 Paul Stockley pstockl...@gmail.com You don't need to. I traced the code a while back and it takes care of it. On Jul 13, 5:50 pm, Gal Dolber gal.dol...@gmail.com wrote: Anyone?? 2010/7/13 Gal Dolber gal.dol...@gmail.com Hi, someone

Re: Distributing a fix to the customer

2010-07-15 Thread Gal Dolber
no really, you need to recompile and replace the all folder 2010/7/15 Parag Thakur para...@gmail.com hello, We need to provide a fix to a customer that's in our client side GWT code. Is there a way to avoid sending the entire ui folder again? Is there a way to distribute just the part that

Re: Compiler Bug in 2.1.0.m2

2010-07-16 Thread Gal Dolber
Maybe this can help you: http://code.google.com/p/google-web-toolkit/wiki/WebModeExceptions Look at the bottom for: Resymbolization Best 2010/7/16 Björn bjoernham...@web.de Hi there, seems like I found a bug in the GWT compiler. IfI compile the source code with -draftCompile the

Re: Can we directly create a Widget from XML string?

2010-07-17 Thread Gal Dolber
I am quite sure you cannot do that... but it you take a look at the uiBinder generator it shouldn't be hard to modify it to do that 2010/7/17 shankar_1979 shankar.pach...@gmail.com Hi GWT team, Is there a way to directly create a GWT widget from an XML string that conforms to the

Re: Serializable vs IsSerialisable

2010-07-20 Thread Gal Dolber
Also, If you use IsSerializable is easier to control the rpc serializers explotion 2010/7/20 Thad thad.humphr...@gmail.com Originally, back with GWT 1.1 and 1.2, objects that could be serialized across GWT's RPC layer had to implement com.google.gwt.user.client.rpc.IsSerializable. This

EclEmma + GwtTestCase + GwtGenerator exception

2010-07-22 Thread Gal Dolber
Hi, I am working on a gwtTestCase that call a gwtGenerator and do something, no matter what. I downloaded and patched eclEmma to work with gwt and it works fine. The problem I have is when I try to test a gwtGenerator failure, the test goes ok, it captures the exception ok, but eclEmma is not

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-07-22 Thread Gal Dolber
Forgot the example: Under a GWTTestCase.. public void testFailureGenerator() { try { GWT.create(BadInterface.class); } catch (RuntimeException e) { return; } fail(); } 2010/7/22 Gal Dolber gal.dol...@gmail.com Hi, I am working on a gwtTestCase that call a gwtGenerator and do

Re: Gradients in css3

2010-07-22 Thread Gal Dolber
thats border radious... for gradients you need to use literal() See http://code.google.com/p/google-web-toolkit/issues/detail?id=4877can=4colspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Stars 2010/7/22 lineman78 linema...@gmail.com You have to escape the beginning dash. Here is from

Re: Add HTML tags around GWT widgets

2010-07-22 Thread Gal Dolber
in uiBinder: g:HTMLPanel this is html divg:LabelAnd here is a widget/g:Label/div /g:HTMLPanel 2010/7/22 Thomas Dvornik amp...@gmail.com Hello, I'm creating an application that parses XML. After parsing, the corresponding widgets gets created and added to the page. To provide more

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-07-23 Thread Gal Dolber
? 2010/7/22 Gal Dolber gal.dol...@gmail.com Forgot the example: Under a GWTTestCase.. public void testFailureGenerator() { try { GWT.create(BadInterface.class); } catch (RuntimeException e) { return; } fail(); } 2010/7/22 Gal Dolber gal.dol...@gmail.com Hi, I am

Re: web-kit gradient not working

2010-07-24 Thread Gal Dolber
Find the thread: Gradients in css3 from a few days ago 2010/7/24 asianCoolz second.co...@gmail.com background-image: -moz-linear-gradient(100% 100% 180deg, #2F2727, #1a82f7) !important; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1a82f7), to(#2F2727)) ; the first

Re: introducing a marketplace for GWT components associated projects

2010-07-25 Thread Gal Dolber
Nice idea!! thanks 2010/7/25 Joe Hudson joe...@gmail.com Hi, I'm a huge fan of GWT and the only problem I have with it is not really a problem with GWT but with the fact that there isn't a centralized place for registering component and associated tools AFAIK. I have created an

Re: GWT Distrubted Compiler Project

2010-07-27 Thread Gal Dolber
Love your idea... even compiling a medium project in a macbook right now is a pain in the ass. I am out of time right now but I will love to help in a near future 2010/7/27 Dobes dob...@gmail.com The google code project for this is at http://code.google.com/p/gwt-distcc/ On Jul 27, 3:05 pm,

Re: GWT Rocks!

2010-07-27 Thread Gal Dolber
Bien ahi otro argentino en gwt :) 2010/7/27 nacho vela.igna...@gmail.com Hi, i just must say that i like GWT more and more every second!!! In argentinian 'GWT es una masa!!!' In spanish 'GWT está de puta madre!!!' Nothing more, i had to share my felling :D -- You received this

Re: GWT optimization overview ?

2010-07-28 Thread Gal Dolber
http://code.google.com/p/google-web-toolkit/w/list 2010/7/28 Olivier olivier.dau...@gmail.com Hi, I am looking for a description of all optimization performed by GWT compilation. I have some question like that. - Does it remove call to method that has no body ? - Is there a way to make all

Re: Sliding effects...

2010-07-30 Thread Gal Dolber
Look at LayoutPanel class 2010/7/30 Thamizharasu S zaru...@gmail.com Hi, I saw one video demo video about GWT application. Whenever the user wants to navigate to another view, the view navigation is happening through some nice sliding effect. Can any one give some insight information about

Re: Can Gin inject eventBus into a widget that's created from uiBinder?

2010-07-30 Thread Gal Dolber
A little improvement: public class MyWidget extends Composite { interface MyWidgetUiBinder extends UiBinderWidget, MyWidget { } private final EventBus bus; @UiField private HTMLPanel outerPanel; @Inject public MyWidget(MyWidgetUiBinder uiBinder, EventBus bus) { this.bus =

Re: Sliding effects...

2010-07-31 Thread Gal Dolber
You can always see the roo + gwt demo code to look at how they used LayoutPanel to do that animation, it is pretty easy to do. 2010/7/31 Tom Wilczak tom.wilc...@gmail.com I think that I saw something similar when I was watching the Roo presentation from the Google I/O keynote. To my knowledge

Re: One v.s N EventBus

2010-07-31 Thread Gal Dolber
I am using one event bus across the whole app. The definition of eventbus implies that, but who knows, I've never though about having multiple eventbuses. Maybe you can find some benefit from doing that 2010/7/31 Sebastian Hoß m...@shoss.de I've been using multiple EventBus instances together

Re: Error on execution

2010-08-03 Thread Gal Dolber
, i'm using Netbeans to build my project, and i don't found the war directory. On Eclipse i saw that, but on Netbeans, not On the main.xml, in the tab Compiler, all the lines are emptythis is correct? Thanks! 2010/8/3 Gal Dolber gal.dol...@gmail.com Jeje, porque contestas en español si

Re: Return permutation directly from the server without selection script.

2010-08-04 Thread Gal Dolber
I look for that a time ago... the Wave team did it.. but it seems they didn't release it. But it shouldn't be hard to do... you need to create a linker that generates a file with the information you need. Then from your server read that file a do the easy part. 2010/8/4 André Moraes

Re: Return permutation directly from the server without selection script.

2010-08-04 Thread Gal Dolber
To be honest.. I don't know :)... I never did it. I good start point is com.google.gwt.core.linker.IFrameLinker 2010/8/4 André Moraes andr...@gmail.com How in the linker i get the permutation that is been generated? I saw the google i/o presentation where the creation off an

Re: Instantiate composite on the server side

2010-08-07 Thread Gal Dolber
why don't you try to explain your situation.. I cannot imagine what you are trying to do. 2010/8/6 Fernando Barbat fbar...@gmail.com Correction... If you want to know the type of the created object, It's almost type safe. :P If you are alright by knowing it's a Widget, it's type-safe. Here's

Re: Worth Upgrading to Eclipse Helios?

2010-08-07 Thread Gal Dolber
No really... it feels a bit faster and have small improvements... But you know that it's always better to use the last version.. 2010/8/7 spierce7 spier...@gmail.com Is it worth upgrading to Eclipse Helios? It sounds like some people are having some issues with it. Does not having Helios

Re: I don't understand why this style won't work

2010-08-07 Thread Gal Dolber
g:DockLayoutPanel styleName={style.all-content} unit=PX height=200px width=400px or g:DockLayoutPanel styleName={style.all-content} unit=PX ui:field=dock @UiField DockLayoutPanel dock; .. dock.setHeight(200px); dock.setWidth(400px); El 6 de agosto de 2010 12:24, Jose Luis Estrella Campaña

Re: Why GWT do not run with Internet explorer?

2010-08-09 Thread Gal Dolber
checkout that your html have this doctype: !DOCTYPE html 2010/8/7 Atilla İlhan KARTAL ad...@atillailhankartal.com.tr Hello ; This my first question. J and sorry for my english. I am new on GWT. I cant run GWT on Internet Explorer 8. How to

Re: Incubator - GWTCanvas problems with image loading

2010-08-09 Thread Gal Dolber
try this: String[] imageUrls = new String[] {GWT.getHostPageBaseURL() + images/GoogleCode.png}; 2010/8/9 kstokes dada...@gmail.com Hi Aditya, Well I have two apps, once is an App Engine variant, and they are a little different in their response, although neither will display the image.

Re: RegEx

2010-08-09 Thread Gal Dolber
There are a bunch of that stuff in trunk right now: http://code.google.com/p/google-web-toolkit/source/browse/#svn/trunk/user/src/com/google/gwt/regexp/shared%3Fstate%3Dclosed 2010/8/9 hazy1 matt.egyh...@gmail.com This sounds like a great idea. Matt On Aug 9, 6:10 am, Dunlord

Re: help with css bundles and background image sprites

2010-08-10 Thread Gal Dolber
public interface MessagePanelClientBundle extends ClientBundle { @Source(message-panel.css) MessagePanelCSS css(); @Source(error.png) DataResource error(); } css: @url errorUrl error; .error { background-image: 'errorUrl'; } 2010/8/10 Joe Hudson joe...@gmail.com

Re: help with css bundles and background image sprites

2010-08-10 Thread Gal Dolber
That solution wont work on IE7 and IE6. Because in all browser but IE7/IE7 gwt will inline the images as base64. The only browsers that really use sprites are those and the nature of sprites require you to put the real width and height to work. If you use width:auto; height:auto you will break it.

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-08-17 Thread Gal Dolber
Finally someone :) 2010/8/16 Island qzha...@gmail.com I am facing the same problem when I try to collect the code coverage data, and here is the stack trace: 21:10:59.578 [ERROR] [splat] Failed to create an instance of 'com.splat.client.SplatService' via deferred binding

Introducing Guit: a next generation gwt framework

2010-08-18 Thread Gal Dolber
I glad to announce that I just open source Guit. I made this framework for internal use in my company, but I decided to open source it to get it event better and stronger. *Guit* is a production ready framework. You will love *Guit* because you are lazy and you don't want to write useful,

Re: Introducing Guit: a next generation gwt framework

2010-08-18 Thread Gal Dolber
, if people register. Thanks. Joe On Aug 18, 8:27 am, Gal Dolber gal.dol...@gmail.com wrote: I glad to announce that I just open source Guit. I made this framework for internal use in my company, but I decided to open source it to get it event better and stronger. *Guit* is a production

Re: Must LayoutPanel always occupy the whole screen?

2010-08-18 Thread Gal Dolber
A LayoutPanel needs to have a width and a height 2010/8/18 mkh mike.hana...@gmail.com In the example below, the LayoutPanel appears to only cover the left part of the screen (a side menu area), but in fact a div is produced the covers the whole screen, and unless you fiddle with z-index,

Re: Frameworks

2010-08-19 Thread Gal Dolber
Taste it while it stills hot :) . Just open-sourced. http://code.google.com/p/guit/ 2010/8/19 Christian Goudreau goudreau.christ...@gmail.com Oh and I forgot, there's also this one: http://gwtgallery.appspot.com/ http://gwtgallery.appspot.com/Cheers, On Thu, Aug 19, 2010 at 10:05 AM,

Android app inventor

2010-08-20 Thread Gal Dolber
Hi, I just got my android app inventor invitation... and you know what? it is completely made with gwt! :D -- 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-tool...@googlegroups.com. To

Re: not show time in date picker

2010-08-20 Thread Gal Dolber
datepicker.setFormat() 2010/8/20 Tushar tsk...@gmail.com How to show only date and not time in date picker? -- 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-tool...@googlegroups.com. To

Re: How to define a human readable URL?

2010-08-20 Thread Gal Dolber
Not sure what exactly you mean 2010/8/20 Thamizharasu S zaru...@gmail.com Hi All, How to define human readable URL for GWT application? any idea... - Thamizharasu S -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

GuitView: a new way of mvpying

2010-08-21 Thread Gal Dolber
Hi! A few days ago I introduced Guit. Right now I am working on one new big feature called GuitView. This feature is still is early stage if development and I will like to hear your opinions and ideas. The design document is here: http://code.google.com/p/guit/wiki/GuitViewDesign Thanks --

Re: How to define a human readable URL?

2010-08-21 Thread Gal Dolber
resources page, I want to have the URL like, http://sample.com/resources/add How could I maintain these type of human readable URL? I hope this would clarify your doubt now... - Thamizharasu S On Aug 20, 11:41 pm, Gal Dolber gal.dol...@gmail.com wrote: Not sure what exactly you mean 2010/8

Is Roo ready for a prime time?

2010-08-23 Thread Gal Dolber
I am planning to start a project with the gwt 2.1(trunk) and roo. Am I doing right? -- 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

Gwt-platform vs Guit

2010-08-24 Thread Gal Dolber
http://code.google.com/p/gwtpsamplesinguit/ -- 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-platform vs Guit

2010-08-24 Thread Gal Dolber
already using GWTP in a project, and what I most like on it is how easy it is to have a presenter loaded asynchronously, this is done with one line of code. How is it done in Guit? On Tue, Aug 24, 2010 at 9:42 AM, Gal Dolber gal.dol...@gmail.com wrote: http://code.google.com/p

Re: Gwt-platform vs Guit

2010-08-24 Thread Gal Dolber
it is to have a presenter loaded asynchronously, this is done with one line of code. How is it done in Guit? On Tue, Aug 24, 2010 at 9:42 AM, Gal Dolber gal.dol...@gmail.com wrote: http://code.google.com/p/gwtpsamplesinguit/ -- Guit: Elegant, beautiful, modular and *production ready* gwt

Re: Gwt-platform vs Guit

2010-08-24 Thread Gal Dolber
back to old ways without any presenter associated. Anyway, I'm more a doer than a thinker, so I'll let anyone else elaborate on the subject :D (Philippe Beaudoin is the brain behind Gwt-Platform :D) Cheers, On Tue, Aug 24, 2010 at 10:25 AM, Gal Dolber gal.dol...@gmail.comwrote: Hi Christian

Re: Gwt-platform vs Guit

2010-08-24 Thread Gal Dolber
got something great and hopefully Gwt-Platform and Guit will grow over this :D Cheers, On Tue, Aug 24, 2010 at 1:19 PM, Gal Dolber gal.dol...@gmail.com wrote: I consider myself a pure mvp developer. But no without a reason... Every time that I said... I will break to pattern here

Re: Is Roo ready for a prime time?

2010-08-24 Thread Gal Dolber
which are going to production in the next 6-9 month Stefan Bachert http://gwtworld.de On 23 Aug., 23:29, Gal Dolber gal.dol...@gmail.com wrote: I am planning to start a project with the gwt 2.1(trunk) and roo. Am I doing right? -- Guit: Elegant, beautiful, modular and *production

Re: Visual Editors

2010-08-24 Thread Gal Dolber
I am sure having a visual editor will be a win for everybody... but still, using uiBinder is 100% friendly, quickly and easy to maintain.. 2010/8/24 Isuru Madusanka 2eis...@gmail.com I don't they will release IDE. But they released Eclipse plugin. On Thu, Aug 19, 2010 at 8:27 PM, Drico

Re: GWT 2.1 M3 is now available

2010-08-24 Thread Gal Dolber
Great news! 2010/8/25 Chris Ramsdale cramsd...@google.com Back in May, at Google IO, we announced an integration between VMware’s popular Spring framework for server-side development and GWT for the client-side. Since then we have been excited by the feedback and comments from customers

Re: Plugin based web application

2010-08-26 Thread Gal Dolber
You can achieve that goal using a jsni communication channel. I don't know what kind of communication do you need between the framework and the widgets, but you can event share Overlay objects. I'll do it this way: your framework declare a global javascript function and when a widget is loaded

Re: Invalid version number errror after upgrading from 2.1 M2 to M3

2010-08-26 Thread Gal Dolber
Remove the generated folder in the war directory and run again. 2010/8/26 Magno Machado magn...@gmail.com After I updated the GWT version on my project, I wasn't able to launch the app anymore. I receive this error: Invalid version number 2.0 passed to external.gwtOnLoad(), expected 2.1;

Re: GWT Flash Killer (beta)

2010-08-26 Thread Gal Dolber
Great job!! 2010/8/26 Christian Goudreau goudreau.christ...@gmail.com Juste one word: AWESOME Cheers, PS: I that that in fact, I wrote more than one word. On Thu, Aug 26, 2010 at 2:45 PM, powwow jimmy.w...@gmail.com wrote: http://www.bluedojo.com/ I thought I'd like to share with

Re: GWT Flash Killer (beta)

2010-08-26 Thread Gal Dolber
Any tutorial? :P 2010/8/26 Gal Dolber gal.dol...@gmail.com Great job!! 2010/8/26 Christian Goudreau goudreau.christ...@gmail.com Juste one word: AWESOME Cheers, PS: I that that in fact, I wrote more than one word. On Thu, Aug 26, 2010 at 2:45 PM, powwow jimmy.w...@gmail.com wrote

Re: GWT hosted mode is extremly slow

2010-08-26 Thread Gal Dolber
Gwt isn't the problem... java is a pig How big is your app? If it is really big and you are instantiating everything when it loads it will be really slow. You need to code-split everything so you will get instantiated only what you are working on, when you lunch development mode. GWT.runAsync or

Re: Handling too many locales in a large scale real life app

2010-08-27 Thread Gal Dolber
Checkout this plugin: http://sourceforge.net/projects/epfe/ 2010/8/27 Fernando spiderkens...@gmail.com So, in my company we face a problem where we have too many properties files to handle, and they are all large, every now and then one properties is left outdated and is missing some

Re: What are the benefits of using a MVP Framework?

2010-08-30 Thread Gal Dolber
It makes unit-testing easier. Thats it. Without mvp you need to use GwtTestCase for all your client side tests, and it isn't the fastest experience. 2010/8/30 Jambi michael.lukaszc...@googlemail.com Hey guys, i´m asking myself these days what´s the benefit of using a MVP Framework like GWTP

Re: What are the benefits of using a MVP Framework?

2010-08-30 Thread Gal Dolber
with one of the frameworks and migrate from that once 2.1 is out. Someone with more experience can probably answer that better than I. On Aug 30, 1:56 pm, Gal Dolber gal.dol...@gmail.com wrote: It makes unit-testing easier. Thats it. Without mvp you need to use GwtTestCase for all your

Re: Using an App-wide RPC serive or multiple services?

2010-08-30 Thread Gal Dolber
here again :D. I like the app-wide rpc service because when you centralize your rpc-service you can easily add batching and caching to it. The down-side is that when you use one rpc-service for your whole app you can't code-split the serializers. I looking for the solution to that problem.

  1   2   3   4   >