Re: CellTable needs overflow set

2011-08-29 Thread Sudhakar Abraham
On Aug 26, 2:26 pm, Al Forbes forbes...@googlemail.com wrote: Hi, I have a pretty standard CellTable setup with the center of a DockLayoutPanel, but the table is never visible. I can fix it by setting if set the DockLayout properties overflowX and overflowY to visible. The sample

Re: CellTable needs overflow set

2011-08-29 Thread Sudhakar Abraham
Do not set overflow in CSS for DockLayoutPanel. Instead, add your celltable in ScrollPanel and set your scrollPanel object in DockLayout panel . Try the following code. Example code ScrollPanel scrollPanel = new ScrollPanel(); scrollPanel.add(cellTable); DockLayoutPanel dock = new

Re: HTML5 Storage: Is it possible to expose/use the serializer/de-serializer used by GWT-RPC internally on the client??

2011-08-29 Thread Alex Dobjanschi
I can understand your point of view (having some generalized/simplified way to use storage + RPC), but I would not do that. Internal data-structure could change between versions, and you need a way to inject the data at the bottom-level of RPC mechanism (right when the bytes get off wire). My

Re: Help! Some confusing problems about gwt rpc with generics!

2011-08-29 Thread Alex Dobjanschi
Are you sure you need a generic RemoteService? Like Jeff stated, RPC proxyCreator needs to ensure all subtypes of the types specified in your RemoteService need to be serialized (that way, server client can communicate without problems). This will bloat the size of generated code. Moreover,

Re: RequestFactory - Working with Enums

2011-08-29 Thread Ido
Thanks for the reply. We indeed created new gwt module which contains RF classes. Our RF module contains proxies, services and servlet to populate Spring services through RF. Then we have other gwt projects then import the above RF module. we can't really import the packages with the enum

Re: MVP + GIN + Storing User Data in client Code?

2011-08-29 Thread Alex Dobjanschi
You should not build your Ginjector until you read user role/permissions. App { show_some_loading_ui (); rpc_get_user_and_permissions (callback { success (..) { // hide some_loading_ui. // use a DeferredCommand to load the app (#see onModuleLoad2 -P). } failure (..) {

Re: RPC Serialize: set filter at runtime to select fields to serialize

2011-08-29 Thread Alex Dobjanschi
I would go with DTO. From your post, I get that you don't want lazy-load -- if that's so, why don't you disable it? http://docs.jboss.org/hibernate/core/3.3/reference/en/html/performance.html#performance-fetching -- You received this message because you are subscribed to the Google Groups

Re: multi pages in gwt

2011-08-29 Thread Marko Borges
Thanks for your answer. This looks like a little complicated and confusing. Isnt there a easier way? I will have many pages. Thanks, Mark 2011/8/25 Sandney Farias sandneyfar...@gmail.com Mark, Try this link http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html. I

Re: UiBinder custom panel

2011-08-29 Thread Kurtt
Oh, brilliant. GWT should really develop an UiChild version what can directly associate to a method like addWidgetToColomn( Widget w, int i). Thank you ~ :) On Aug 28, 5:22 pm, Thomas Broyer t.bro...@gmail.com wrote: Yes, simply annotate a method with

Re: HTML5 Storage: Is it possible to expose/use the serializer/de-serializer used by GWT-RPC internally on the client??

2011-08-29 Thread Thomas Broyer
GWT-RPC is not a symmetric protocol, so you can't use the existing serializer/deserializer code, you'd have to port the server-side ones to client-side and choose one of the two serialization format. -- You received this message because you are subscribed to the Google Groups Google Web

Re: RequestFactory - Working with Enums

2011-08-29 Thread Thomas Broyer
No, Enums have to be available on the client-side. If you have them as top-level classes, or if their containing class is translatable, then you can easily make them accessible to the client-side using a gwt.xml module with a source path=include name=Status.java //source in it (with one

Re: RequestFactory - Working with Enums

2011-08-29 Thread Ido
Sounds good. We will use top level classes to store the enums and sourced them in the gwt.xml module. Thanks a lot for your replies! Ido -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: HTML5 Storage: Is it possible to expose/use the serializer/de-serializer used by GWT-RPC internally on the client??

2011-08-29 Thread J.Ganesan
Reflect the classes in the server. Request for the reflection information from the client. The reflection information should have version information too. With the reflection information, custom- serialize the objects in the client and save/read locally. The custom- serialization will be hard if

Re: multi pages in gwt

2011-08-29 Thread Marko Borges
By the way I am trying to work with gwt-multipage jar that looks simple but had to update gwt and smartgwt and everything is crashing now... Baah 2011/8/29 Marko Borges markoborge...@gmail.com Thanks for your answer. This looks like a little complicated and confusing. Isnt there a

Disable panel with a translucent dark mask

2011-08-29 Thread Ahmed
I am programming the authentication system of the application I am working on. When the application loads for the first time, it asks the user for a username and a password. The login credentials are entered by the user using a form inside a gwt Window. This window is shown over the application

create Junit Test case for my Presentation

2011-08-29 Thread Manish
I am trying to create Junit Test case for my Presentation Layer , while creating Presentation instance in setup method of Junit it goes througn GWT.Create at this point it fails saying java.lang.ExceptionInInitializerError . . Caused by: java.lang.UnsupportedOperationException: ERROR:

how to create a portlet

2011-08-29 Thread yashujn
Hi all, I hope after this post my problem will solved. I am very new in gwt and i dont knw from where to start. i read the tutorial provided by gwt but my problem is i want to create a page like igoogle but i dont knw how to strt i mean i am unable to get that portlet(i mean that small

Conditional CSS Updates

2011-08-29 Thread rth
Hi, I have a Conditional CSS block that calls isPortrait() at runtime and correctly renders the right rule based on its return value. My problem is that I cannot figure out how to get the condition to be reevaluated in the future (e.g., when the orientation changes, I would like to have the

Re: Conditional CSS Updates

2011-08-29 Thread Juan Pablo Gardella
Interesting... +1 2011/8/29 rth rthol...@gmail.com Hi, I have a Conditional CSS block that calls isPortrait() at runtime and correctly renders the right rule based on its return value. My problem is that I cannot figure out how to get the condition to be reevaluated in the future (e.g.,

GWT Designer+maven in Eclipse = error GWT widgets can be used only in client package of GWT module

2011-08-29 Thread Timas
In Eclipse i imported project with import -existing maven projects. I tried to use GWT Designer and got error GWT widgets can be used only in client package of GWT module. I can make new GWT Java Project, where GWT Designer work OK. What i have do that my existing maven projects work with GWT

Request Factory and extra proxy attributes

2011-08-29 Thread navrc
Hi, I'm trying RequestFactory and have one problem. I have this entity: public class Album { private String name; private ListPhoto photos; ... // getters/setters ... } public class Photo { private String description; private string src; // getters/setters ... } and

Re: multi pages in gwt

2011-08-29 Thread Cristian Rinaldi
What is the reason to have multiple pages? (HTML Pages) Ajax applications respond to the pattern Sinlge Page. You can manage the content to be displayed using MVP (Place / Activities). A.U.S Cristian Rinaldi 2011/8/29 Marko Borges markoborge...@gmail.com By the way I am trying to work with

Re: Request Factory and extra proxy attributes

2011-08-29 Thread Thomas Broyer
Technically, you can (or you should be able to, I'm not so sure after the recent changes in RF in GWT 2.4), but it might sound like using a sledge hammer to crack a nut: it'd require using ServiceLayerDecorator on the server-side (and annotate your getter in your proxy with

Re: Disable panel with a translucent dark mask

2011-08-29 Thread Sean
You may want to check out the DialogBox with setGlassEnabled() to true. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/sdXs4zzzTAEJ. To post to

Re: HTML5 Storage: Is it possible to expose/use the serializer/de-serializer used by GWT-RPC internally on the client??

2011-08-29 Thread -sowdri-
@Thomas GWT-RPC is not a symmetric protocol, ... Guess, we cant straight away use the existing serializer/de-serializer! Any plans for official support for serializer/de-serializer for the purpose of HTML5 storage?? Thanks, -- You received this message because you are subscribed to the

Re: HTML5 Storage: Is it possible to expose/use the serializer/de-serializer used by GWT-RPC internally on the client??

2011-08-29 Thread Thomas Broyer
RequestFactory and AutoBeans are the way to go. GWT-RPC will continue to be maintained, and its performance and security be worked on, but I don't think they'll enhance it anymore. DeRPC was supposed to be a better RPC but has finally been dropped (in favor of RequestFactory). -- You received

Re: create Junit Test case for my Presentation

2011-08-29 Thread Michael Vogt
Hello. I am trying to create Junit Test case for my Presentation Layer , while creating Presentation instance in setup method of Junit it goes througn GWT.Create at this point it fails saying To test your presentation layer, you need to use GwtTestCase instead of plain JUnit:

Re: multi pages in gwt

2011-08-29 Thread Marko Borges
Cause i am doing a project migration and i dont wanna loose the structure. I know that GWT applications have a single page as pattern but I would like to use multiple pages. In case I change my mind and wanna use MVP, does anyone have a complete example, cause in case of menus and complex widgets

Re: Can't display wide HTML in Dialog

2011-08-29 Thread Sudhakar Abraham
Add your HTML contents in VerticalPanel and add VerticalPanel to DialogBox. For Dialogbox, set the size attribute in CSS . Hope it solves your problem. S. Abraham www.DataStoreGwt.com On Aug 27, 5:55 am, dhoffer dhoff...@gmail.com wrote: I'm starting with the sample GWT 2.3.0 app that just

GWT plugin update site problems

2011-08-29 Thread Sleeveen
I've been trying to install a new eclipse setup on a new machine and have been having problems with the GWT plugin update site: it doesn't appear to be available. I've been using the GWT plugin for a couple of years and have never seen this problem. If you try to access:

New Windows and panels

2011-08-29 Thread jose felix estevez
good friends, will be possible to open a new window and create panels in that window. -- Jose F.Estevez H. T.S.U. en Analisis y Diseño de Sistemas Consultor Staff I Tecnology Consulting Solutions - TCS -- You received this message because you are subscribed to the Google Groups Google Web

Re: Disable panel with a translucent dark mask

2011-08-29 Thread redjhawk
If you want to do it manually, you can add a layer (called B) over the layer you want to hide (called A). Create also a CSS property similar to: .blackBackground { background-color:black; filter: alpha(opacity=70); opacity:0.7; } Then, when the layer A should be hidden, add the property

Setting default value for DateItem()

2011-08-29 Thread mohit ranjan
Using Smart GWT I am having a DynamicForm with Code: final DateItem dateFromFormItem = new DateItem(); { dateFromFormItem.setTitle(Date from); dateFromFormItem.setName(dateFrom); } final DateItem dateToFormItem = new DateItem(); {

Re: Setting default value for DateItem()

2011-08-29 Thread Tom Carchrae
dateItem.setDefaultValue(new Date(System.currentTimeMillis() + (24L * 60L * 60L * 1000L))); On Mon, Aug 29, 2011 at 8:26 AM, mohit ranjan shoonya.mo...@gmail.comwrote: Using Smart GWT I am having a DynamicForm with Code: final DateItem dateFromFormItem = new DateItem();

Maps v3 + GWT using JSNI - Map showing problem -

2011-08-29 Thread Alberto
Hi everybody! I need to use maps v3 API with GWT, but I've a problem on map showing. I created a custom map (with a custom image) in this way: public class MapContainer{ public native

Test web toolkit

2011-08-29 Thread pjmorce
Hello I am trying to install google web toolkit to test it. I am using Eclipse Galileo. However, when I try to install the toolkit using the http://dl.google.com/eclipse/plugin/3.5; location it does not work. So, I am trying using the other way: downloading the zip file and installing it in

Could not find http://dl.google.com/eclipse/plugin/3.6 neither download zip file

2011-08-29 Thread Nicolas Garnil
I just can't install Google Plugin from eclipse helios (3.6) Adding update site http://dl.google.com/eclipse/plugin/3.6 site returns Could not find http://dl.google.com/eclipse/plugin/3.6; I also tried downloading the zip files but the following error is displayed on the page:

Deferred Binding in gwt

2011-08-29 Thread Tarnakin Sergey
Hi, I have to compile different code for safari and chrome browsers. The problem is when I use code like this replace-with class=org.raccoon.hit.client.ui.balancenew.BalanceViewImplChrome when-type-is class=org.raccoon.hit.client.ui.balance.BalanceViewImplAll/ any

Re: multi pages in gwt

2011-08-29 Thread Bruno Sandivilli
I have the same doubt a months ago, my project had to use clean urls. To solve this i did like i think twitter dows. i put a hash tag listener in my page, so the urls looks like www.myapp.com/#!/user , and i catch the events on there. But im asking me now, theres another beuatfull way to achive

Re: Maps v3 + GWT using JSNI - Map showing problem -

2011-08-29 Thread Alberto
If I use it directly in onModuleLoad method, in this way it looks right: *** private MapContainer mapContainer=null; private SimplePanel container=new SimplePanel(); private JavaScriptObject mappa=null;

Re: Setting default value for DateItem()

2011-08-29 Thread mohit ranjan
Thanks Tom. It's working. Mohit On Mon, Aug 29, 2011 at 9:10 PM, Tom Carchrae t...@carchrae.net wrote: dateItem.setDefaultValue(new Date(System.currentTimeMillis() + (24L * 60L * 60L * 1000L))); On Mon, Aug 29, 2011 at 8:26 AM, mohit ranjan shoonya.mo...@gmail.comwrote: Using Smart GWT

Re: Google logo's to brighten up the app.

2011-08-29 Thread Rohan Chandiramani
Just a friendly bump, i would really like to know. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/DP69cnVdHTYJ. To post to this group, send

Aw: HTML5 Storage: Is it possible to expose/use the serializer/de-serializer used by GWT-RPC internally on the client??

2011-08-29 Thread joergviola
I used JSON for that purpose. But you have to write the serializers by yourself. Or you could take a look at https://code.google.com/p/mobile-objects/, which is brand-new and currently in alpha, but capable of storing GWT Objects transparently to HTML5 database or storage, whatever available.

custom celltable loading indicator

2011-08-29 Thread al76
Anyone able to point me in the right direction on how to implement a light weight loading indicator for celltable, ideally like the yui datatable. e.g. http://developer.yahoo.com/yui/examples/datatable/dt_clientpagination_clean.html -- You received this message because you are subscribed to

HTML5 local object persistence for GWT

2011-08-29 Thread joergviola
Hello, I want to announce a new lib for HTML5 gwt apps: https://code.google.com/p/mobile-objects/ Using it, you can directly persist objects to local HTML5 storage or database, whatever is available. Moreover, synchronisation to a server is possible, currently to GAE using objectify. GWT

Re: Google logo's to brighten up the app.

2011-08-29 Thread Sean
Just use Google Image search to get the logos. As long as you don't say you drew it or its your product, you can use them. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Manipulate a div section in the html page

2011-08-29 Thread Kevin Courtney
Hello, As a followup, I'm having a heck of a time trying to find an example and figure out the syntax and values for the properties to set. I've tried this: DivElement divIntroPageElement = DivElement.as(Document.get().getElementById(introPage));

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

2011-08-29 Thread Alfredo Quiroga-Villamil
All: We are really happy to announce the addition of GWT4Titanium Mobile to our suite of available products. With a 100% implementation of the Appcelerator's API for Titanium Mobile, it has never been easier to develop cross platform mobile applications and all from the convenience of your

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

2011-08-29 Thread leandro borbosa
Is nt this the same as in the gwt4air(http://code.google.com/p/gwt4air/) project ? 2011/8/29 Alfredo Quiroga-Villamil alfr...@emitrom.com All: We are really happy to announce the addition of GWT4Titanium Mobile to our suite of available products. With a 100% implementation of the

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

2011-08-29 Thread Alfredo Quiroga-Villamil
Hello Leandro: Yes, Emitrom is the commercial arm of our products. We offer both open source as well as support now. Regards, Alfredo On Mon, Aug 29, 2011 at 12:50 PM, leandro borbosa leandrob...@googlemail.com wrote: Is nt this the same as in the gwt4air(http://code.google.com/p/gwt4air/)

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

2011-08-29 Thread Thomas Broyer
So, just to make things clear: Namor Kambo from your about page == Alain Ekambi == nino ? BTW, forcing people to create an account (what for?) so they're allowed to download a product is not really the best way to get them involved; particularly if the mail containing the password isn't

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

2011-08-29 Thread Alfredo Quiroga-Villamil
Hello Thomas: Yes indeed, long story; but yes it's a running joke here between us. We are talking about Alain. Bear with us as we will slowly try to make things easier and better. We truly appreciate you catching up that we missed the linker class, it was under a different package and we simply

Request implementation couldn't be found.

2011-08-29 Thread Nik
When starting my application it fails on firing the request. Debug mode says RatesRequestImpl.findrates(int a, int b) source couldn't be found. Where findrates is one of my methods. Struggling with this problem really long, checked all possible places of the app and no solution found. I will

Re: Manipulate a div section in the html page

2011-08-29 Thread Jeff Chimene
On 08/29/2011 09:38 AM, Kevin Courtney wrote: Hello, As a followup, I'm having a heck of a time trying to find an example and figure out the syntax and values for the properties to set. I've tried this: DivElement divIntroPageElement =

CSS

2011-08-29 Thread Sandeep D
Hi, I'm doing a web project using JSP-TOMCAT-DB2. And i have applied CSS stylesheet for every page. My pc's screen resolution is 1360 x 768 px. But when i run the same project in other computers(less resolution), my pages get widened. Please help me so that my CSS should fit for every resolution.

Re: CSS

2011-08-29 Thread Juan Pablo Gardella
Use percent and not px, perhaps with this you can fix it. 2011/8/29 Sandeep D sandeep.dattar...@gmail.com Hi, I'm doing a web project using JSP-TOMCAT-DB2. And i have applied CSS stylesheet for every page. My pc's screen resolution is 1360 x 768 px. But when i run the same project in other

GWT 2.3

2011-08-29 Thread Markus
Hello! I developed for years with struts and tomcat, but I wanted to start with gwt. I want to use GWT only with JDBC and not with GAE. Can anybody explain me how I configure a Connection Pool like in tomcat with JNDI? I Tomcat I just need to configure the Context Context Resource

Re: Request implementation couldn't be found.

2011-08-29 Thread Thomas Broyer
On Monday, August 29, 2011 7:42:08 PM UTC+2, Nik wrote: Console says : [ERROR] Could not find matching method in synlogistics.ratesexchange.server.domain.Rate. Possible matches: synlogistics.ratesexchange.server.domain.Rate findRate(java.lang.Long ) Your method findRates in your

RequestFactory cannot find Entity

2011-08-29 Thread Rud
I have been experiencing something strange with ReuqestFactory. Some detials: Helios Eclipse GWT 2.3 / GAE 1.5.1 JDK 1.6 I have a Person with PersonProxy and PersonRequest. These use the simple @ProxyFor(Person.class) and @Service(Person.class). I started up Eclipse and before doing anything

Re: Manipulate a div section in the html page

2011-08-29 Thread Thomas Broyer
On Monday, August 29, 2011 8:03:21 PM UTC+2, jchimene wrote: HTML.wrap(Document.get().getElementById(theId)).setVisible(false); I didn't follow the thread, but you should wrap an element in a widget just to call a few methods. For setVisible, use the static method in UIObject:

Re: Request implementation couldn't be found.

2011-08-29 Thread Nik
The problem is it definitely has one in the Rate class (my Entity class, all annotations set and checked everywhere) Defined as : @SuppressWarnings(unchecked) public static ListRate findRates(int first, int max){ EntityManager em = EMF.get().createEntityManager(); try{

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

2011-08-29 Thread Alain Ekambi
Hi Thomas, Hi Leandro, Hi all Indeed i joined forces with the Emitrom team to provide not only better products in the future but also the professional support that s goes with it. @Emitrom we trully believe in Open Source that a why all our products are open and free to use under GPL. Like

Custom implementation of the EventBus

2011-08-29 Thread Stefan
Hello Everybody From what I see the application developer is not suppose to be able to create a custom implementation of the EventBus type. The main reasons are the protected void dispatch(H handler) and packaged void setSource(Object source) methods of the GwtEvent type. What is the rational

Re: GWT 2.3

2011-08-29 Thread Juan Pablo Gardella
This is out of gwt. Check in your server how do this. 2011/8/29 Markus ad...@thandaro.com Hello! I developed for years with struts and tomcat, but I wanted to start with gwt. I want to use GWT only with JDBC and not with GAE. Can anybody explain me how I configure a Connection Pool like in

NumberFormat format with all available decimal digits

2011-08-29 Thread Raziel
Hi, I would like to be able to call the NumberFormat format method with a Double and get in the string all the digits available in the Double value. It seems to me that you have to forcefully specify in the patter one digit per decimal you want to display (i.e. #.# for 5 decimal digits, #.##

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: Deferred Binding in gwt

2011-08-29 Thread Tarnakin Sergey
? -- 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 unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options,

Re: Custom implementation of the EventBus

2011-08-29 Thread Hilco Wijbenga
On 29 August 2011 13:03, Stefan sbara...@gmail.com wrote: Hello Everybody From what I see the application developer is not suppose to be able to create a custom implementation of the EventBus type. The main reasons are the protected void dispatch(H handler) and packaged void setSource(Object

Re: GWT Developer Plugin for Firefox 6

2011-08-29 Thread comzine
I switched from Chrome to FF under Linux cause of annoying windows telling me the GWT web page is unresponsive during debugging. This bug is already known, but should be more important and easier to fix than solving problems with FF Changelog due Chrome is also built by Google! Please help me!

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

2011-08-29 Thread Alain Ekambi
Well this is part of the things coming in the next days/weeks. Stay tuned :) 2011/8/29 Gal Dolber gal.dol...@gmail.com 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?

CellTables and fileupload help!!

2011-08-29 Thread jose felix estevez
good friends I'm trying to create a column that is the typefileupload any ideas? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/_iGJ8sHL0GQJ.

Re: Trouble with List Editors

2011-08-29 Thread Maiku
It's unfortunate no one has further input on this. For the time being, it looks to me like a limitation that you cannot use UIBinder for the editors that are created by the ListEditor. Can anyone confirm this? -- You received this message because you are subscribed to the Google Groups Google

Re: How to do JUnit testing for a composite widget created using UIBinder?

2011-08-29 Thread BM
So you are saying I should have three files for a custom composite widget using UIBinder? .java file .ui.xml file Presenter file ? On Aug 28, 5:22 am, Alex Dobjanschi alex.dobjans...@gmail.com wrote: IMO You should not do unit testing for views. All you could test is what, that they look

Re: Google logo's to brighten up the app.

2011-08-29 Thread karim duran
Hi Sean If you want a Google-logo-like for your app or product : http://neswork.com/logo-generator/google-font Regards Karim Duran 2011/8/29 Sean slough...@gmail.com Just use Google Image search to get the logos. As long as you don't say you drew it or its your product, you can use them.

Re: GWT Developer Plugin for Firefox 6

2011-08-29 Thread Chris Conroy
Just run a Firefox binary that's supported by the plugin. For chrome, you can always launch a separate instance with --disable-hang-monitor to get rid of that popup behavior. I recommend doing this with a separate --user-data-dir as well for a devmode only profile since you want that popup when

Re: Google logo's to brighten up the app.

2011-08-29 Thread karim duran
Hi Rohan If you want a Google-logo-like for your app or product : http://neswork.com/logo-generator/google-font Regards Karim Duran 2011/8/29 Rohan Chandiramani masterxr...@gmail.com Just a friendly bump, i would really like to know. -- You received this message because you are subscribed

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

2011-08-29 Thread gwt.user
I personally rather have an official company backing up a project then open person running a free time project. I also wont mind registering if the product is worth it. I said id before this is a really interesting GWT module and i ll definitly took a look at it. @Alain I ve been following you

Re: Google logo's to brighten up the app.

2011-08-29 Thread Rohan Chandiramani
Thank you Sean and karim33, both you're comments have been great help! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/8X-gClttLFYJ. To post to

Re: RequestFactory cannot find Entity

2011-08-29 Thread Thomas Broyer
On Monday, August 29, 2011 8:54:12 PM UTC+2, Rud wrote: I have been experiencing something strange with ReuqestFactory. Some detials: Helios Eclipse GWT 2.3 / GAE 1.5.1 JDK 1.6 I have a Person with PersonProxy and PersonRequest. These use the simple @ProxyFor(Person.class) and

Re: Trouble with List Editors

2011-08-29 Thread Thomas Broyer
I can confirm you *can* use any kind of sub-editor with ListEditor. More often than not our sub-editors are built using UiBinder (we do use RequestFactoryEditorDriver, but that really shouldn't matter; UiBinder is an implementation detail). Is the error happening in DevMode or using GWT

Re: Request implementation couldn't be found.

2011-08-29 Thread Thomas Broyer
Sorry, as the error says, this is not about findRates (plural), but findRate (singular). You can try downloading requestfactory-apt-2011-08-18.jarhttp://google-web-toolkit.googlecode.com/svn/tools/lib/requestfactory/requestfactory-apt-2011-08-18.jarand configuring it in Eclipse; it's more

Re: RequestFactory cannot find Entity

2011-08-29 Thread Rud
No, the error cannot be ignored. The app will not run when the error is generated. The error occurs not only with auto-build but also when running the app or doing a GWT compile. On Aug 29, 4:41 pm, Thomas Broyer t.bro...@gmail.com wrote: On Monday, August 29, 2011 8:54:12 PM UTC+2, Rud wrote:

Why doesn't my custom widget work in chrome but perfectly in firefox?

2011-08-29 Thread Ingert Doe
Hello, Today I ran into some problems with a custom widget. I created a new GWT project and made a small test widget to narrow down the problem. Here is the test widget I wrote: public class MyWidget extends Composite implements MouseOverHandler, MouseOutHandler { private final HTML

Re: RequestFactory cannot find Entity

2011-08-29 Thread Thomas Broyer
But can't you bypass the error and continue with the DevMode launch? Workaround: replace @ProxyFor with @ProxyForName. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

GWT 2.3 with Jetty Datasource NameNotFoundException

2011-08-29 Thread Markus
Hello! I try to use GWT without GAE and I will use a normal Datasource. But I always get an NameNotFoundException. My jetty-env.xml under WEB-INF: ?xml version=1.0? !DOCTYPE Configure PUBLIC -//Mort Bay Consulting//DTD Configure//EN http://jetty.mortbay.org/configure.dtd; Configure id=myapp

Re: Custom implementation of the EventBus

2011-08-29 Thread Stefan Ollinger
Why do you want to create your own event bus? Am 29.08.2011 22:21, schrieb Hilco Wijbenga: On 29 August 2011 13:03, Stefansbara...@gmail.com wrote: Hello Everybody From what I see the application developer is not suppose to be able to create a custom implementation of the EventBus type. The

Re: GWT 2.3 with Jetty Datasource NameNotFoundException

2011-08-29 Thread Thomas Broyer
I believe the embedded Jetty has been initialized with support for JNDI. I don't think it's meant to support this kind of setup though. You'd better deploy to a distinct server (Tomcat if you want) and run the DevMode in -noserver

compilation time issue with only 1 permutation

2011-08-29 Thread Marcin Biegan
Hello, I've recenty seen High-performance GWT talk from Google IO 2011 and during the part about compiler options David Chandler said that large GWT projects can take several minutes to compile. My current project takes about 1h to compile on average machine (i5 2.4GHz, 8GB ram, SSD drive, ~80k

Re: Custom implementation of the EventBus

2011-08-29 Thread Hilco Wijbenga
On 29 August 2011 15:32, Stefan Ollinger stefan.ollin...@gmx.de wrote: Why do you want to create your own event bus? Read my email and the discussion that your namesake linked to. Am 29.08.2011 22:21, schrieb Hilco Wijbenga: On 29 August 2011 13:03, Stefansbara...@gmail.com  wrote: Hello

Re: Using a CellTable with individual Cell selection

2011-08-29 Thread jsano
Thanks Sudhakar! This code works perfectly. On Aug 19, 5:12 pm, Sudhakar Abraham s.abra...@datastoregwt.com wrote: In celltable css change the properties of cellTableOddRowCell:hover and cellTableEventRowCell:hover set the border properties. Here is a sample code. package

Re: GWTCanvas alternatives

2011-08-29 Thread AThinerCoin
Context2d was exactly what I needed. Thanks for all the help! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/R7D1Fr6MeNIJ. To post to this

Access static file from onModuleLoad() method

2011-08-29 Thread AThinerCoin
I'd like to access a static file, let's say config.xml from my onModuleLoad method. It says on this webpage, that config.xml should live in the public sibling dir of my .gwt.xml file, but I've tried that and onModuleLoad function still gives me the error below. It also suggests that I add a

Re: RequestFactory cannot find Entity

2011-08-29 Thread Rud
Yes, I could bypass the error but when the app attempts to perform the RequestFactory activities it throws exceptions that Person cannot be found. The Person data is not saved or retrieved. I'll try the other version of the annotation. Of course, since posting this message it has behaved itself.

Re: GWT 2.3 with Jetty Datasource NameNotFoundException

2011-08-29 Thread Markus
Thanks for ur reply. But I don't want to use another Servlet Container and I think that jetty has JNDI Support. So I just find the bug in my config.. -- 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: Aw: HTML5 Storage: Is it possible to expose/use the serializer/de-serializer used by GWT-RPC internally on the client??

2011-08-29 Thread -sowdri-
I completely agree with the fact that RequestFactory is the way to go! I use RF in all my projects. But I also use RPC along side, esp. when it comes to Google Collections (Table DS for instance). Or to put the question other way around: *Is it possible to make ValueProxies, which can embed

[gwt-contrib] Re: Integrating Peng's recent API changes to CellTableBuilder into HeaderCreator. HeaderCreator now... (issue1533804)

2011-08-29 Thread jlabanca
http://gwt-code-reviews.appspot.com/1533804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Integrating Peng's recent API changes to CellTableBuilder into HeaderCreator. HeaderCreator now... (issue1533804)

2011-08-29 Thread jlabanca
Since we seem to be in agreement (or at least acceptance), I changed HeaderCreator to HeaderBuilder. I also separated the FooterBuilder interface as Brian suggested. http://gwt-code-reviews.appspot.com/1533804/diff/1/user/src/com/google/gwt/user/cellview/client/AbstractCellTable.java File

Re: [gwt-contrib] maven source jars

2011-08-29 Thread Daniel Bell
Hey Guys, I just noticed this thread, and wanted to suggest Maven Ant Tasks ( http://maven.apache.org/ant-tasks/index.html). It includes Ant tasks for installing build artifacts to local Maven repositories, or deploying them to remote Maven repositories, both with arbitrary POMs. It can also

[gwt-contrib] [google-web-toolkit] r10589 committed - removing tag for respin of 2.4.0

2011-08-29 Thread codesite-noreply
Revision: 10589 Author: mrruss...@google.com Date: Mon Aug 29 09:22:57 2011 Log: removing tag for respin of 2.4.0 http://code.google.com/p/google-web-toolkit/source/detail?r=10589 Deleted: /tags/2.4.0 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10590 committed - Tag 2.4.0 release

2011-08-29 Thread codesite-noreply
Revision: 10590 Author: mrruss...@google.com Date: Mon Aug 29 09:34:15 2011 Log: Tag 2.4.0 release http://code.google.com/p/google-web-toolkit/source/detail?r=10590 Added: /tags/2.4.0 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >