Re: GWT designer keeps hanging!! going mental

2011-09-05 Thread Sudhakar Abraham
Change the eclipse.ini file configuration in eclipse installed directory. -Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=512m S. Abraham www.DataStoreGwt.com On Sep 2, 8:40 pm, Elhanan elh.maa...@gmail.com wrote: i'm sorry, but is way too much, i'm trying to use

Re: GWT Developer Plugin for Firefox 6

2011-09-05 Thread Renee Lau
Thanks a lot! it works for me! On 8月31日, 下午6時34分, Michael Vogt vmei...@googlemail.com wrote: Hello. Can you pass the path to download the plugin? I got it from here:http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/preb... Greetings, Michael -- You received this

Re: redirect GWT application URL

2011-09-05 Thread Thomas Broyer
Recent browsers implement pushState/onpopstate which allows changing the URL (and not only the hash part) without unloading the page. You can see it at work in Google Plus, GitHub's repository browser or even Facebook. In GWT, you could use deferred binding to replace the Historian

Re: HTML5 Offline Web-Application

2011-09-05 Thread Stephen Buergler
Passing -compileReport into the gwt compiler while using this linker results in this: http://pastebin.com/dzDafk96 If it is any help this is what I made following a video about GWT. http://pastebin.com/tjTghKVA No template file necessary. I changed the name of the outputted file so that both

Re: redirect GWT application URL

2011-09-05 Thread Qiang Ma
Thanks Y2i and Thomas. One of the reason is I wonder if I can redirect a full domain name to a internal state of my application. For example , I go to a domain hosting to redirect http://someotherdomain.com to http://mything.com/#someotherdomain But the domain hosting service

Re: JAXB + GWT

2011-09-05 Thread J.Ganesan
Have a look at http://code.google.com/p/gwt-ent/. This library will enable you to build UI using reflection. I have found manually restructuring JAXB output *.java files to be very profitable. For instance, many of the classes and datatypes can be more simply represented as enums. Also, have a

Re: redirect GWT application URL

2011-09-05 Thread Qiang Ma
Just an update... In the filter, redirect seems not working request.getRequestDispatcher(New_Url); On Mon, Sep 5, 2011 at 6:52 AM, Qiang Ma mumay...@gmail.com wrote: Thanks Y2i and Thomas. One of the reason is I wonder if I can redirect a full domain name to a internal state of my

Hosted mode on Mac broken

2011-09-05 Thread Joe Schmoe
I have previously been able to use hosted mode perfectly for a long time. Then, a while ago I did some kind of update, maybe of Eclipse, and now it doesn't work any more. I keep getting the message Development Mode requires the Google Web Toolkit Developer Plugin No matter how many times I

Re: when would the onBrowserEvent method of Widget be triggered ?

2011-09-05 Thread Sudhakar Abraham
Register the events by calling the following method in the constructor of your widget. sinkEvents(Event.ONMOUSEDOWN | Event.ONMOUSEUP | Event.ONMOUSEOVER | Event.ONMOUSEOUT); // override in your widget class public void onBrowserEvent(Event event) { switch (DOM.eventGetType(event)) {

Aw: Hosted mode on Mac broken

2011-09-05 Thread Jens
Currently there is no GWT Plugin for Safari 5.1. You have to use Safari 5.0.5 or some other browser. See: https://groups.google.com/d/topic/google-web-toolkit/uIJ5VqmxO_s/discussion -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: redirect GWT application URL

2011-09-05 Thread Thomas Broyer
On Monday, September 5, 2011 1:52:37 PM UTC+2, maq wrote: Thanks Y2i and Thomas. One of the reason is I wonder if I can redirect a full domain name to a internal state of my application. For example , I go to a domain hosting to redirect http://someotherdomain.com to

Re: Hosted mode on Mac broken

2011-09-05 Thread Joe Schmoe
Thank you. That was easy. :-) Anybody know when this is expected? -- 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

Need inside knowledge for Activites and Places - How do listeners for PlaceControllers get initialized?

2011-09-05 Thread Ralf@str84wd
Hi *, I've just done some refactoring in my project and am now finding that my PlaceHistoryHandler is no longer able to trigger a default Place. I'm following the default procedure as described in the GWT online documentation as you can see in the source code at the end of the mail. After

runtime property configuration

2011-09-05 Thread giant_therapist
Hello. Did the search , but still no luck in getting an adequate answer... How can one configure AT RUNTIME the GWT application? For example, I have a class MyConstants.java. I would like AT RUNTIME in production certain variables to be filled in with some values, while in development with other

Re: GWT designer keeps hanging!! going mental

2011-09-05 Thread Eric Clayberg (Google)
Thanks for the thread dump, but it just raies more questions. There are a huge number of threads shown which seem to be hanging around for some unknown reason. The thread dump has no stack trace for any of them. Try running Eclipse from command line (or use eclipsec.exe), work a while with

Re: what EXACTLY influences gwt designer preview??

2011-09-05 Thread cri
Ie6 is your problem. Upgrade to ie8 and your problems go away. On Sep 4, 3:05 pm, Elhanan elh.maa...@gmail.com wrote: i have 2 indigo's , the first at my home running on windows 7 64 bit, freshly installed , and another and my xp machine at work.. however the designer on the xp machine doesn't

Number Formatter class omits the digits after 2 decimal places

2011-09-05 Thread Atul
Hi, I want to change a double value to USD currency format, so i used NumberFormat class of com.google.gwt.i18n.client.NumberFormat package. So when i say NumberFormat.getCurrencyFormat().format(doubleValue) it returns me string in US$ format but only upto 2 places of decimal. I don't want to

Modal Dialog/Non-busy Wait

2011-09-05 Thread melody
I wish to embed an asynchronous call to the server inside a method that MUST NOT return until the server has responded. So I am looking for a way to achieve a non-busy wait in GWT. I thought I could use a modal popup dialog to stop the next line from being executed until the dialog is closed and

Port to Vaadin

2011-09-05 Thread Lawal
I recently discovered this project, I intend to make a shameless port of some of the components to the Vaadin framework. I hope this is ok by the developers and Yes I know it is apache but still it's nice asking. Lawal Olufowobi -- You received this message because you are subscribed to the

GWT development is UNBEARABLY slow

2011-09-05 Thread John Wheeler
The cross-browser time-savings are completely diminished when you take into account OOPHM or hosted mode development in ANY of the browsers with ALL of the optimizations on stackoverflow, in the newsgroups, etc. It is incredibly slow and frustrating. People considering GWT development need to

Aw: Number Formatter class omits the digits after 2 decimal places

2011-09-05 Thread Jens
You can always use NumberFormat.getFormat(String pattern) to provide your own custom pattern or you use NumberFormat.getCurrencyFormat(CurrencyData data). You can try to use DefaultCurrencyData or provide your own implementation of CurrencyData. -- J. -- You received this message because you

Re: GWT development is UNBEARABLY slow

2011-09-05 Thread Dennis Haupt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 i agree it's slow, but not THAT slow. the hosted mode is up to 10x slower than the javascript mode (for me) i assume it to be the gwt server - browser overhead for native javascript calls Am 05.09.2011 19:26, schrieb John Wheeler: The cross-browser

Re: GWT development is UNBEARABLY slow

2011-09-05 Thread Jim Douglas
You said any browsers, so it's not clear which one you use for primary development. GWT DevMode is very slow in Chrome, but it's perfectly acceptable in Firefox. Also, you pay most of the cost up front in the first load; reloading your browser page after making changes is very fast. Also, when

Re: GWT designer keeps hanging!! going mental

2011-09-05 Thread Elhanan
i've narrowed down the cause!!! the issue is with the save action format source code, to reproduce. create a sample gwt project with sample code. open the entry point with gwt designer with configuration of Source code first and design later. mark in prefrences-java-editor-save actions-

Re: GWT designer keeps hanging!! going mental

2011-09-05 Thread Elhanan
i've narrowed down the cause!!! the issue is with the save action format source code, to reproduce. create a sample gwt project with sample code. open the entry point with gwt designer with configuration of Source code first and design later. mark in prefrences-java-editor-save actions-

request parameter to persist through the RequestFactory

2011-09-05 Thread thiago borges martins
Hi I am facing a problem with the RequestFactory not found solution yet. In my project I have the EJB module that has the services that are called by the interface on the client side, as described in the documentation of RF, the searches are working properly, but when I call the persist method

Gwt Earth 3 - now available

2011-09-05 Thread NitrousDigital
For anyone who is interested in using Google Earth in a GWT project, I have created an up-to-date GWT overlay API that exposes all of the functionality offered by the Google Earth JavaScript API v3. The project can be found here along with over 50 demos: http://code.google.com/p/gwt-earth-3/

ResourceBundle an Properties

2011-09-05 Thread Markus Unger
Hello! I am new at GWT and I try to develop an simple login form. So the basic is working (RPC, Submit Button and so on). Now i will add a properties File to load different languages. In struts there is a simple Properties File like this: title = my title version = 0.1 How can I use a Propertie

Re: GWT development is UNBEARABLY slow

2011-09-05 Thread karim duran
Hi John, In my opinion GWT is not for little application ( just a newsgroup or forum ). For big application you earn lot of time because it's easy to build the user interface, easy to test, easy to add functionalities...and easy to deploy. Really cross browser, and friendly java based. I agree

Re: what EXACTLY influences gwt designer preview??

2011-09-05 Thread Eric Clayberg (Google)
GWT Designer uses WebKit for rendering under Windows 7. Under XP, it has to use IE. That means any widgets/layouts will only be displayed as well as IE can render them. RootLayoutPanel requires strict mode which works much better in modern browsers. IE6 is the cause of what you are seeing.

Re: GWT 2.3 with Jetty Datasource NameNotFoundException

2011-09-05 Thread Thomas Broyer
For people coming to this thread through search, I just stumbled on that blog post from the people behind Jetty: http://webtide.intalio.com/2011/08/gwt-and-jndi/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re : Re: Using unchanged CSS class names (no obfuscation or prefixing at all)

2011-09-05 Thread regis.dev
Hi i found a solution. no obfuscation or prefixing at all. At the begin of your css file put this line. @external * PS: it working with gwt 2.4-rc1 (it should work for the olders versions) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

how to make a textbox rtl

2011-09-05 Thread wahaha
if i want to input arabic word,how to make the textbox right to left ? -- 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

Re: Conditional CSS Updates

2011-09-05 Thread Sanjay
AFAIK, ensureInjected() on CssResource just calls getText() and injects a style element into the DOM using StyleInjector once and only once. getText() is more interesting. Every CssResource text is converted into a series of string concatenations. The runtime evaluation @if (boolean-expr) {

Re: how to make a textbox rtl

2011-09-05 Thread Y2i
You can inherit inherits name='com.google.gwt.user.theme.standard.StandardRTL'/ http://code.google.com/webtoolkit/doc/latest/tutorial/style.html#GWTtheme Also, check out examples http://gwt.google.com/samples/Showcase/Showcase.html#!CwBidiInput

[gwt-contrib] Re: ui:with to set property values (issue1524803)

2011-09-05 Thread Rafael Castro
What worried me at first was having one of the attributes being set to a value that's also defined via ui:with, because I think that then our precedence scheme may break. I'm afraid that if you have something like this: ui:with type=some.LayoutData field=layoutData ui:attributes left=15

[gwt-contrib] Re: Comment on RequestFactory_2_4 in google-web-toolkit

2011-09-05 Thread codesite-noreply
Comment by ido@gmail.com: In Improved request batching section the sample has typo: ctxB.requestB().to(new ReceiverBoolean(){}); should be ctxB.requestB().to(new ReceiverInteger(){}); For more information: http://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_4 --