Re: Using GWT RPC with Custom Created Class.

2010-02-03 Thread Tan Jia Bao
Hmm, I checked it and this is all that I have inside ?xml version=1.0 encoding=UTF-8? module inherits name=com.google.gwt.user.User/ !-- Inherit GlassPanel module -- inherits name=com.google.gwt.widgetideas.GlassPanel/ inherits

Re: gwt test suite: did you forget to inherit a required module?

2010-02-03 Thread Tan Jia Bao
Hi, I have the same error for one of my own custom class. I entered the following source path = org.snagit.classes.Product/ where the path is the exact location of the class I am using. However, now I'm no longer having not being able to find the source, Compiler tells me that an EntryPoint

Re: Use Annotation to generate client side code

2010-02-03 Thread Miss Marie Ruana
I think it's possible because Gin (Google Guice Client side) use annotation but i can't figure how to do this! Anyone have an idea ? On 2 fév, 11:50, Miss Marie Ruana miss.marie.ru...@gmail.com wrote: Hi all, I would like to know if it's possible to generate code with an annotation in client

Re: GWT and applets

2010-02-03 Thread Martin Trummer
http://code.google.com/p/gwtai/ may be helpful On 2 Feb., 22:20, K.WA chd...@gmail.com wrote: Hi I'd like to write an applet that would allow to paste an image (+ a few other thing like croping) inside a rich text area form. To be able to paste and crop, I think I will write a small applet

Cross site Javascript compliant to standards and not by using cheats

2010-02-03 Thread Cristiano
I've always searched for a way to enable cross site XmlHttpRequest without using tricks. Flash has this capability: you can specify exceptions on cross site by placing a file named crossdomain.xml on the root of the site. Today, I've found this in the mozilla blog: --

Re: how to control that a FileUpload has been filled properly

2010-02-03 Thread Martin Trummer
you could check the filenames in the SubmitHandler of the form or you could use the onChange event FileUpload to show an error message On 2 Feb., 21:48, K.WA chd...@gmail.com wrote: Hi I would like to allow file upload of images. I'm using the FileUpload object in a Form object. I'd like

Re: gwt test suite: did you forget to inherit a required module? (solved!)

2010-02-03 Thread Ray Tayek
At 12:54 AM 2/3/2010, you wrote: Hi, I have the same error for one of my own custom class. I entered the following source path = org.snagit.classes.Product/ where the path is the exact location of the class I am using. However, now I'm no longer having not being able to find the source,

Re: Cross site Javascript compliant to standards and not by using cheats

2010-02-03 Thread Cristiano
Take also a look to this: http://www.w3.org/TR/access-control/ Please leave your feedback! -- 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 unsubscribe from this

Re: how to use Comet on Gwt?

2010-02-03 Thread bamd...@gmail.com
Kerem Tiryaki thanks for you hint. i checked the code and understood the concept of doing comet in gwt. but i found that you've implemented comet yourself , i was looking for any framework that help me do comet more easily. recently i found stream-hub and it has community version that will work

Re: Use Annotation to generate client side code

2010-02-03 Thread Harald Pehl
You have to use deferred binding to generate your code. Take a look at http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideCodingBasicsDeferred.html for further information. I'm using this in my XML mapper for GWT. If your interested the source code is available under

Re: how to use Comet on Gwt?

2010-02-03 Thread mariyan nenchev
Forgive me, but stream hub sux. We implemented it in our project, but we gave up on it and replaced it with Lightstreamer which is paid too. Streamhub is not suitable for many users and many messageser/sec. Try using gwt event service. All good push frameworks are paid. Lightstreamer is very good,

Re: how to use Comet on Gwt?

2010-02-03 Thread bamd...@gmail.com
thanks for your notification. I'm already gathering information about gwt comet framework and checking GWTEventService right now. On Feb 3, 2:51 pm, mariyan nenchev nenchev.mari...@gmail.com wrote: Forgive me, but stream hub sux. We implemented it in our project, but we gave up on it and

Re: WebSocket

2010-02-03 Thread dolcra...@gmail.com
I'm pretty sure you can write a library to add this functionality, you would just need to have graceful degradation support for all those browsers and servers that do not support websocket. It would probably have to be a combination of Websocket/(ServerSendEvents+XHR)/(Comet/

Re: Use Annotation to generate client side code

2010-02-03 Thread Tom Schindl
Hi, I've written a set of blog posts about code generation which are exploiting annoation to generate JS-Code and Java-Classes. http://tomsondev.bestsolution.at/2010/01/05/background-to-qxwt-and-gwt-generator-integration/ http://tomsondev.bestsolution.at/2010/01/10/qxwt-explained-part-2/

Re: Use Annotation to generate client side code

2010-02-03 Thread David Goodenough
On Tuesday 02 February 2010, Miss Marie Ruana wrote: Hi all, I would like to know if it's possible to generate code with an annotation in client side before the GWT compilation ? For example, if i have a POJO like this : @MyAnnotation public class MyPojo { private String

Re: how to use Comet on Gwt?

2010-02-03 Thread mariyan nenchev
Hi, i want you to know that i have never used gwt event service but it looks promising. In my company we are using Lightstreamer, which is paid. I am planning my own project which will need server push, but i will not use LS, because i can't afford to pay the price (~$20k/year i think!). So you

Re: DevMode!!! how make it works.

2010-02-03 Thread sith
sorry. May be i don't understand something, BUT is it manual advice me add to my project some wonderful lib only for debug??? On Feb 3, 9:32 am, Ladislav Gazo ladislav.g...@gmail.com wrote: Hello, from what you are telling it seems you are running in configuration where your server is

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread Jeff Larsen
We're currently using GXT on a large project and I'd like to say that GXT's layout system is alien to GWT, the documentation is nonexistant, the appearance is highly inflexible, and the attitude of the support team sucks (even for customers that pay for support). Consider, for a moment, that

Is this bug fixed?

2010-02-03 Thread mariyan nenchev
http://209.85.135.132/search?q=cache:L7fwrBkWHdAJ:code.google.com/p/google-web-toolkit/issues/detail%3Fid%3D4221+gwt+popup+center+not+workingcd=7hl=bgct=clnkgl=bgclient=firefox-a -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Combining Google Checkout

2010-02-03 Thread Addy
I have integrated Google checkout with my GWT based application. It works like any other app but the only catch is that you have to give a URL to google which is called after the transaction is completed. I made that URL a spring app which is connected to the database but not directly to the GWT

Using GWT code on server

2010-02-03 Thread jd
Hi, I was wondering if there exists already a way to share the same code for building HTML on the server and on the client? If not I was thinking about making a mock DOM object which simply built an in memory model and then spat out html. Has this already been done? Or do people generally

Re: Co-existing 1.7.1 projects and 2.0 projects

2010-02-03 Thread Jason Parekh
Hey Pieter, Could you explain which extra hurdles you had to go through? Seems like you ran into issues that we need to fix! :) jason On Wed, Feb 3, 2010 at 1:46 AM, Pieter Breed pieter.br...@gmail.com wrote: Hi Jason, Thanks for the reply. I did eventually get a working configuration for

Re: Is this bug fixed?

2010-02-03 Thread Christian Goudreau
I'm using Popup panel and I don't see any bug, so I asume that Yes It Is ! On Wed, Feb 3, 2010 at 9:49 AM, mariyan nenchev nenchev.mari...@gmail.comwrote:

Re: DevMode!!! how make it works.

2010-02-03 Thread Ladislav Gazo
It is more a matter of configuration of your project. If you are not running in noserver mode you don't need anything and it should work out-of-the-box but if you are running noserver, then you need to do more. But maybe it is just a misconfiguration of service on the client side... go through it

Problems with DialogBox and DockLayoutPanel

2010-02-03 Thread bysse
Hi, i'm having trouble getting the DialogBox to work properly with a DockLayoutPanel. If i don't specify the size of the DialogBox it's very small and nothing shows. And if I specify the size of the dialog the borders are all wrong and the contents are outside the dialog, hidden. This is what

Re: RequestBuilder error handling

2010-02-03 Thread Thomas Broyer
On Feb 2, 9:56 am, Fotos Georgiadis gfo...@gmail.com wrote: Hi, I have a question about the proper use of error handling code with RequestBuilder. I can't figure out what's gonna happen, when something goes wrong, and the proper way to handle such situations. I've already searched this

Re: Using GWT code on server

2010-02-03 Thread Thomas Broyer
On Feb 3, 4:09 pm, jd jdpatter...@gmail.com wrote: Hi, I was wondering if there exists already a way to share the same code for building HTML on the server and on the client?  If not I was thinking about making a mock DOM object which simply built an in memory model and then spat out html.

SerializationException appear suddenly if deployed to production

2010-02-03 Thread rmuller
I am working with GWT 2.0 since it is released and it is working fine. Till today.. Now I get a lot of SerializationException's even for enum's. See below. Permissie is just a normal enum. Caused by: com.google.gwt.user.client.rpc.SerializationException: Type 'xxx.Permissie' was not assignable to

Re: Problem with GWT 2.0 Chrome developer plugin

2010-02-03 Thread Steve Lancey
Same here On Jan 19, 3:05 pm, Isac isacsso...@gmail.com wrote: Hi, I have recently updated the GWT SDK from 1.5.3 to 2.0.0 on a project. I managed to fix all issues but one. I can't use the development mode with chrome. The login page of my application loads perfectly but when I try to log in

Re: Problems with DialogBox and DockLayoutPanel

2010-02-03 Thread Paul Stockley
The borders getting screwed up when setting the size seems to me an issue with dialog box even if you don't use the new layout panels -- 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: Problems with DialogBox and DockLayoutPanel

2010-02-03 Thread bysse
It seems that I've got something fundamental very wrong here. Whenever i use DockLayoutPanel the divs in the layout always get eight height or width undefined which leaves my contents hidden (because of overflow-*: hidden). What is the correct usage of these panels? On Feb 3, 4:49 pm, bysse

Re: Cross site Javascript compliant to standards and not by using cheats

2010-02-03 Thread Thomas Broyer
On Feb 3, 10:32 am, Cristiano cristiano.costant...@gmail.com wrote: I've always searched for a way to enable cross site XmlHttpRequest without using tricks. Flash has this capability: you can specify exceptions on cross site by placing a file named crossdomain.xml on the root of the site.

Re: Preserve HTTP Sessions when restarting Jetty

2010-02-03 Thread Thomas Broyer
On Dec 15 2009, 12:01 pm, cromoteca luci...@virgilio.it wrote: It seems due to Development Mode not reading war/WEB-INF/jetty- web.xml. Any hint? DevMode *does* read jetty-web (I'm using it on a prototype project to set the WebAppContext's userRealm and authenticator). -- You received this

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread Tercio
You know guys, this is a tough decision. We all differ in experience and knowledge. I think that this criticism is good for every one. SmartGWT is very good in Server-side integration, with a lot UI widgets, but it's a wrapper to JS and you can't override the way it work internally(Yes, some

Re: How Do I Change The Welcome (html) File?

2010-02-03 Thread Thomas Broyer
On Feb 2, 8:34 pm, Russ r...@epcinternet.com wrote: I created an app, and now I want to run it in a different HTML file. I created the new HTML file, placed it in the war directory, made sure the new HTML file has the correct RootPanels and changed the welcome- file in the web.xml file to

Re: Compiling in subdirectory

2010-02-03 Thread cromoteca
Is it impossible? Really?? Forgive me, but I thought I was missing something obvious. On 1 Feb, 09:13, cromoteca luci...@cromoteca.com wrote: Hi, when I compile my module, it gets compiled into /something in the war folder. Is there any way to compile it into /some/thing and run it from

Re: Is this bug fixed?

2010-02-03 Thread mariyan nenchev
Well when i show my popup i call center() and after that show(). The first time the popup is not centered, but after that it is. On Wed, Feb 3, 2010 at 5:23 PM, Christian Goudreau goudreau.christ...@gmail.com wrote: I'm using Popup panel and I don't see any bug, so I asume that Yes It Is !

Re: RootPanel.get() problems

2010-02-03 Thread Thomas Broyer
On Feb 2, 6:00 pm, Juan M.M.M. knn0n@gmail.com wrote: hi! I'm becoming exasperated because this class sometimes works fine and sometimes it going crazy. Let's supose this HTML like mine ... body    div id=frame1       div id=frame1.1       /div    /div    div id=frame2    /div

How to close browser window with event

2010-02-03 Thread mariyan nenchev
Hi, I want to have my own button that closes the current browser window that shows my gwt app. -- 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 unsubscribe from

Re: How Do I Change The Welcome (html) File?

2010-02-03 Thread Russ
have you added the correct script and iframe (for history support) in your new page? Thank you, it's working now after some fussing around. It could be that I omitted the script the first time. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread gengstrand
I noticed that SmartGWT doesn't support the iPhone whereas GWT does. This surprised me because SmartGWT does work when using Safari on either PC or Mac. How do GXT apps work when surfed to by an iPhone? On Feb 3, 10:24 am, Tercio terciofi...@gmail.com wrote: You know guys, this is a tough

Re: SubmitCompleteEvent.getResults on File upload

2010-02-03 Thread aliman
Additionally, I find that if you return an HTML document as the response to the form submission, the value of getResults() is the content of the body element in the HTML document. I don't know if this is a good idea, but I return an HTML document like... htmlheadtitleresults/title/headbody!--

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread mariyan nenchev
On Wed, Feb 3, 2010 at 6:24 PM, Tercio terciofi...@gmail.com wrote: SmartGWT is very good in Server-side integration, with a lot UI Smart gwt pro/ee may be, but not smart gwt. Tell me how many lines of code you must write in order to integrate it with EJBS? What steps you must do in order to

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread siberian
We've found this ability to override methods and subclass components to be invaluable. You may be able to do some of this with SmartGWT, I have not specifically looked. Coming from a Wicket background I found GXT to be very comfortable and 'Wicketlike' in the way thats its pure Java and abstracts

JSNI question

2010-02-03 Thread Paul Stockley
Is there a way I can get the obfuscated name of a JAVA object's field from within a JSNI method? I can get the actual value by using: [instance-exp...@class-name::field-name but what I want is just the @class-name::field-name as a string. The compiler gives an error if I omit the instance

Re: onBlur called twice because of FocusWidget.setFocus implementation

2010-02-03 Thread Thomas Broyer
On 2 fév, 02:56, Stuart stuartmoff...@gmail.com wrote: My use case: I have a TextBox which I want to validate onBlur. If validation fails, I want to setFocus on it again. Which makes onBlur fire again, hence the validation routine runs again (not ideal, in fact, a defect in my mind). My

Re: how to use Comet on Gwt?

2010-02-03 Thread bamd...@gmail.com
today i emailed stream-hub asking the prices and here is a brief info : Web Edition Pricing Single Server License US$ 999 Support Maintenance (1st year) FREE Web Edition Optional Extras HTTPS Support US$ 499 Support Maintenance (2nd year

Tutorial : GWT UiBinder with JAX-RS Jersey and Objectify @ http://wp.me/PnkVx-1S

2010-02-03 Thread Iqbal Yusuf Dipu
Tutorial : GWT UiBinder with JAX-RS Jersey and Objectify @ http://wp.me/PnkVx-1S _Iqbal -- 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 unsubscribe from this

IE bug in vertical sizing of div elements

2010-02-03 Thread Thad
I have the requirement read to display widgets, rendering them similar to how they display in a Mac/Windows application (not a web app, but a client that provides forms for a database). The widgets are fairly common things--labels, text boxes, checkboxes, pictures, etc. The display is

Re: How to close browser window with event

2010-02-03 Thread UJ
Calling this native function should do this for you: native public static void close()/*-{ $wnd.close(); }-*/; -- 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: Compiling in subdirectory

2010-02-03 Thread UJ
Since the GWT application is a web application, it follows the default web application deployment pattern (see more details on: http://onjava.com/pub/a/onjava/2001/03/15/tomcat.html). We can add any jar or compiled classes to our web application by adding them to the application server class path

Re: How to close browser window with event

2010-02-03 Thread mariyan nenchev
I thought about something not native, but this will do. Thanks! On Wed, Feb 3, 2010 at 9:30 PM, UJ upendra.jar...@gmail.com wrote: Invoke following code from the action handler: native public static void close()/*-{ $wnd.close(); }-*/; -- You received this message because you are

EasyMock async methods?

2010-02-03 Thread Dalla
Hi all I´m currently testing EasyMock for my GWT non widget unit tests. Was wondering if there are any good approaches to testing async methods? Found http://googletesting.blogspot.com/2009/08/tott-testing-gwt-without-gwttest.html, but that´s about 6 months old. Is this still the best way to go?

Re: Announcing GWT 2.0.1

2010-02-03 Thread Chi H
Great job! One question - one of the bugs listed as being fixed was 'Standard.css missing new layout styles'. I'm having trouble finding these new layout styles. My expectation was that standard.css would be updated with the new styles. Standard.css on the 2.0.1 can be seen here:

Security: access denied (java.lang.RuntimePermission modifyThreadGroup)

2010-02-03 Thread Cyril
I am running GWT 2.0 with Spring security and GAE. When I start my app, I do have this error: Caused: access denied (java.lang.RuntimePermission modifyThreadGroup) It doesn't prevent my app to work neither affect my security. However it takes some processing time and I would like to get rid of

Development Mode Performance - Any Options?

2010-02-03 Thread Erron
My performance of development mode seems to be much slower than hosted mode (pre-2.0). I frequently get the prompt that the script is taking too long, would I like to abort (FF and Chrome). I was wondering are there some other options I can try to see if I can increase my performance. I don't

Charts in Visualization API -- pushing data

2010-02-03 Thread John Ivens
Suppose that I would want to use the Google Visualization API and somehow have events pushing data into a line graph... fairly rapidly. I would want this line graph to real-time update itself. So, let's say I would want it to continuously graph the last 10 data points that it had recieved,

Re: Announcing GWT 2.0.1

2010-02-03 Thread Thad
Where and how has this been done? How can I use it? The only reference I see to alt is in com.google.gwt.dom.client.ImageElement, getAlt() and setAlt(), and the code is the same as in 2.0.0. On Feb 2, 9:01 pm, Miguel Méndez mmen...@google.com wrote: The GWT 2.0.1 point release is now available

Re: Announcing GWT 2.0.1

2010-02-03 Thread Yegor
Cool! Thanks. How soon do you think you can get it into the main Maven repo? Yegor -- 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 unsubscribe from this group,

navigating between uibinder templates

2010-02-03 Thread dk
Hi, I've got a large domain object, 150 fields (it's an insurance application) and was wondering if I could split the uibinder templates across this object. So, say for instance sake, page1.ui.xml, page2.ui.xml, etc. I've managed to get two templates onto the same page, navigation.ui.xml and

i18n, store html content in property-file?

2010-02-03 Thread freak-master flex
Hey, I'm pretty new to GWT, i've a good Java knowledge and I know PHP well. I'm developing a website in 2 languages and I chose the extending the messages interface with binding to property-files. I translated the menu, that worked fine, but how can I store my contents? I read a few things

GWT Plugin fails to operate in Firefox and Google Chrome

2010-02-03 Thread Mikey87
Hello, I have been having many issues trying to get Firefox and Chrome to operate properly with the GWT Plugin for the browsers. The only browser that I am not having issues with is Explorer, it works but is very slow. I have been doing the GWT tutorials for a project and I just wondered if

GWT 2.0 internet explorer 7 devmode issue?

2010-02-03 Thread fark
I'm having difficulties with ie7 devmode on windows xp and gwt 2.0. Basically if I click a link in ie while running the app, the url is replaced and the application reloads if there are history tokens. A simple test showing the url modification (note this does not reload the app as there are no

Re: IllegalStateException when passing HttpSession as parameter

2010-02-03 Thread Guser
What servlet container are you using? If appengine with eclipse plugin, you must enable sessions in appengine-web.xml with this line, sessions-enabledtrue/sessions-enabled On Jan 19, 1:31 pm, mata_svada matej.sve...@gmail.com wrote: Hi! I'm getting a weird behaviour with GWT 1.7.1 (on Mac OS X

GWT 2.0 and java Generic

2010-02-03 Thread Jinat
Does GWT 2.0 surpports java 1.6 Generic syntax? -- 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 unsubscribe from this group, send email to

Re: gwt-phys2d: 2D physics engine for GWT

2010-02-03 Thread seongjoo
This is very cool. Wonderful work. I was thinking about doing this myself too. I am trying to use this in Eclipse but it gives me build errors as followings: The web.xml file does not exist (phy2d) On 1월28일, 오후8시48분, Neil Halelamien ne...@caltech.edu wrote: I've put up a new version which

Embedded jetty

2010-02-03 Thread Thom with an H
I'm trying to modify the jetty.xml file so I can define JDBC settings for my jetty instance, but I can't seem to find where to do this with the embedded jetty that comes with GWT. Does anyone have an idea? -- You received this message because you are subscribed to the Google Groups Google Web

Re: SuggestBox hides RootLayoutPanel and all its contents

2010-02-03 Thread Stefano Ciccarelli
This is my dirty solution: !-- To solve a Popup bug in IE7 -- !-- the code doesn't works anymore on IE6 -- replace-with class=com.google.gwt.user.client.ui.impl.PopupImpl

GWT Plugin on Firefox 3.6 (linux) not working

2010-02-03 Thread vali
Hello I hope i'm right here with my problem. If not, please inform me and i'm sorry about that. When i read that the new GWT-plugin update added FF 3.6 support i updated my browser on linux. Unfortunately it doesn't work. It says install plugin, downloads the ~3m, installs and needs to be

Cannot get code splitting to work

2010-02-03 Thread Jonathan
If I create a basic GWT 2.0 project, and add some basic code splitting, it works perfectly fine. But our main application is pretty massive and complex. I cannot get it to split ANY code whatsoever - even the most basic test. I generally confirm this by looking at the soyc compile report but

GWT build requirements and packaging for Fedora

2010-02-03 Thread jlaska
Greetings, I am looking into packaging GWT for Fedora. According to the Fedora packaging guidelines, all packages must not include any bundled libraries or JAR files [1]. As a result, I have attempted to identify the JAR files included in GWT and whether they are already packaged in Fedora. So

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread Jonathan
I'm also using GXT on a very, very large project. My experience has been pretty positive. I've been working with the GXT library over a year. The appearance of most components can be changed pretty easily. I prefer the GXT rendering model over GWT. We have custom versions of nearly every GXT

Re: Announcing GWT 2.0.1

2010-02-03 Thread Florian
Hi, Does the Eclipse Plugin automatically update it's SDK to 2.0.1? Or is the update notification only related to the Plugin Version? I dont see any updates when klicking: Check for Updates in Eclipse. Thanks, Florian On 3 Feb., 03:01, Miguel Méndez mmen...@google.com wrote: The GWT 2.0.1

Gwt server side and maven

2010-02-03 Thread joe7935
Hello all, I try to build a gwt server side project in maven . I was looking for example in the web , i found examples in this site : http://code.google.com/p/gwt-maven/ I have some questions : 1. Do I have to start with maven project ( by selected an archetype maven-gwt-plugin) 2. if any one

GWT PopupPanel center problem

2010-02-03 Thread Misha
Hi! I have the problem with PopupPanel.center() method. Let's take Mail sample (AboutDialog.java) bundled with GWT 2.0 . I have notice that padding is specified for .aboutText: .aboutText { text-align: left; padding-top: 200px; } AboutDialog isn't centered. It is aligned to the

Integrating GWT features into my existing app?

2010-02-03 Thread paulmo
How do I add features written with GWT, like Menu and Panel, to my existing app that was not made with GWT? Do I just copy/paste compiled Javascript and HTML files? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Drop-down Checklist : Something very similar to JQuery plugin : ui.dropdownchecklist

2010-02-03 Thread Sajeev Paul
I need help to build a dropdown checklist in GWT, similar to the one available with JQuery plugin. Thanks, Sajeev -- 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

using ClientBundle for a themeable image set

2010-02-03 Thread Bob
Hi, I have a set of static objects which are retrieved from the server and rendered in a custom widget on the client. Each of these objects has an image associated with it. I want these images to be themeable, such that the entire set of images used for these objects can be swapped out. For

Re: Unable to Use GWT Developer Plugin with Firefox 3.6

2010-02-03 Thread kolstae
I have the exact same problem. On Feb 2, 4:53 pm, Thad thad.humphr...@gmail.com wrote: Yes.  This has been observed and commented on.  I've been usingFirefox3.5.7 (on Linux) because of this. This morning I was alerted to an update to the GWT plugin, and installed it (v.1.0.7511).  However

MVP with GWT 2.0/UiBinder could be simplified

2010-02-03 Thread mahjong
Having gone through gwt-presenter, gwt-dispatcher, and gwt-mvp-sample, it appears to me these projects were designed and implemented in a pre- GWT-2.0/UiBinder age. They haven't taken into consideration the new UiBinder features. So I am still seeking the best practice of implementing MVP with

Running several projects in Development Mode in Eclipse fails.

2010-02-03 Thread lim
Hello. How is it possible to start several projects in development mode simultaneously / start two instances of development mode? Software: Eclipse Platform: 3.5.1.M20090917-0800 Google Plugin for Eclipse 3.5: 1.2.0.v200912062003 Google Web Toolkit SDK 2.0.1: 2.0.1.v201002021445 Google App

Getting error $doc.getBoxObjectFor is not a function in Firefox 3.6

2010-02-03 Thread Prashant
We use GWT 1.5 for our rest results publishing dashboard. We extensively use GWT widgets like MenuBar, DialogBox, PopupPanel, etc. Everything had been working fine till date. However, when we recently upgraded Firefox to the latest version (3.6), a lot of features seem to have been broken. For

Re: how to control that a FileUpload has been filled properly

2010-02-03 Thread BimboJones
I saw some code for that, you can extend de FileUpload class and override the onBrowserEvent() function to listen to onChange event. MyFileUpload() { DOM.sinkEvents(this.getElement(), Event.ONCHANGE); } public void onBrowserEvent(Event event) {

Help on gwt app initial download...

2010-02-03 Thread golfdude
My app ( obfuscated ) is at 850kb and my users are complaining on initial download time as in beta mode I tend to put regular releases. My users are all in dialup ( 56 kb ) kind of connections. I have been searching this group and searching for some tutorial to split into modules ( one link to a

How to access a web service using GWT?

2010-02-03 Thread Dany
Hi I am new to GWT and looking at ways to access a web service from GWT client. Does GWT provide any infrastructure to make web service calls (both synch asynch)? I appreciate any pointers to articles, code samples, etc. Thanks -- You received this message because you are subscribed to the

Re: Embedded jetty

2010-02-03 Thread John Ivens
I would be interested in knowing where that file is also... On Tue, Feb 2, 2010 at 12:12 PM, Thom with an H thomh...@gmail.com wrote: I'm trying to modify the jetty.xml file so I can define JDBC settings for my jetty instance, but I can't seem to find where to do this with the embedded jetty

Re: Is this bug fixed?

2010-02-03 Thread Chris Ramsdale
This doesn't appear to be fixed (at least based on the status). If it's still an issue for (which it sounds like it is), please star the issue and add any relevant details that are specific to your application. On Wed, Feb 3, 2010 at 11:32 AM, mariyan nenchev nenchev.mari...@gmail.comwrote:

File borwser

2010-02-03 Thread djschorn
Hi, I have a very simple question. Is there a GWT widget that allows the client to manage file/and directory hosted on the server-side ? I didn't find a full gwt library. I found two libraries (Mollify and Ext.ux.FileTreePanel), but there aren't a full GWT widget. Thanx by advance -- You

Re: Announcing GWT 2.0.1

2010-02-03 Thread Brett Morgan
When will this update be on the Eclipse plugins site? brett 2010/2/3 Miguel Méndez mmen...@google.com The GWT 2.0.1 point release is now available for download. It contains fixes for bugs found in the 2.0.0 release. Potentially breaking changes and fixes - Fixed a bug in how code

Problem with Thread in GWT2.0

2010-02-03 Thread SergeZ
Hi everybody! I meat the following problem. When my GWT app is started it is very necessary to make an asynchronous call - to gether some data. If i make this call directly from OnModuleLoad() method - then i getting the result, but when I putting the call of my method in a thread:

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread ckendrick
Re: widgets inside grid rows: not only is it out of the box in SmartGWT, there are multiple out of the box modes for it, including nested editable grids. http://www.smartclient.com/smartgwt/showcase/#featured_nested_grid

GoogleMaps gwt-maps Tiles don't align or fill the Widget.

2010-02-03 Thread ahhughes
Hi All, I suspect this is an easy one, sorry I can't find the answer. Adding a MapWidget directly to the RootPanel().get().add() works! But if I add my MapWidget into a TabPanel then the map tile/layers aren't where they are supposed to be. I have grey background visible where tile's should be,

Upgrade problem 1.7 -- 2.0

2010-02-03 Thread iaio81
Hi all, because of the slowness of GWT 1.7's hosted mode, I was trying upgrading GWT to 2.0 but after having done it I have problems running my projects created with 1.7. What I've to change? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Announcing GWT 2.0.1

2010-02-03 Thread Chi H
This seems to have the same problem as the styles The trunk version of com.google.gwt.user.client.ui.Image has getAltText() and setAltText() methods, but those methods are not in the 2.0.0 or the 2.0.1 versions. On Feb 3, 3:58 pm, Thad thad.humphr...@gmail.com wrote: Where and how has this been

Re: Question regarding presenter in MVP pattern

2010-02-03 Thread Manuel Carrasco Moñino
Just a point, I think having in the display the method: 'Widget asWidget();' is not a good idea, is it?. I think you have to use only interfaces (or basic types) in order to decouple presenter-view and test it in the jvm. Cheers Manolo On Sun, Jan 31, 2010 at 10:47 PM, gugguson

Re: Co-existing 1.7.1 projects and 2.0 projects

2010-02-03 Thread Pieter Breed
I'll explain as best I can. I upgrade my project from 1.7.1 to 2.0 and tried to get it running. When that didn't work out, I reverted the project back to use GWT1.7.1 (via the eclipse Google GWT project setting). I cleaned the project, closed and re-opened eclipse. I even tried to delete the

Re: validation in gwt ?

2010-02-03 Thread Ric66
Hi Abdullah, AFAIK, validation is scheduled with GWT 2.2 (see GWT Incubator Status Update and Schedule at http://groups.google.com/group/google-web-toolkit/browse_thread/thread/26f883d9b0c02136/1516a4a543f56ffe?lnk=gstq=roadmap#1516a4a543f56ffe). I choose to use gwt-validation: it works fine,

Mozilla Problem

2010-02-03 Thread Sanj
Hi All, I run my application is on Mozilla 3.4 then there is no issue but when i run the same thing in Mozilla 3.5.5 then i am facing following issue :- 00:00:34.234 [ERROR] Failed to load module 'shrisurance' from user agent 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.7)

[gwt-contrib] Re: Questions on JsArray*

2010-02-03 Thread Thomas Broyer
On Feb 2, 8:16 pm, Tom tomson...@gmail.com wrote: Hi, I have some questions and proposals around the JsArray-classes because they are handy when working with JSNI but I believe they could be improved a bit. a) Why are not all native methods provided through the wrapper. Missing methods

[gwt-contrib] [google-web-toolkit] r7524 committed - Merge tr...@7358 into this branch...

2010-02-03 Thread codesite-noreply
Revision: 7524 Author: r...@google.com Date: Wed Feb 3 07:25:42 2010 Log: Merge tr...@7358 into this branch Fix issue 4425: Invalid String.charAt(int) when using escape string syntax http://code.google.com/p/google-web-toolkit/source/detail?r=7524 Modified: /releases/2.0/branch-info.txt

  1   2   >