Re: Investigation

2009-08-22 Thread DuoCentillion
Agreed - nothing to do with Google Web Toolkit or if it is, only very indirectly. Everything here is free. On Aug 22, 4:52 am, Tom Ball tball...@gmail.com wrote: That transaction has nothing to do with Google Web Toolkit, as everything related to it is free to download and use. A quick search

Re: XML Schema or DTD for GWT configuration files

2009-08-22 Thread George Georgovassilis
Sure, it's gwt-module.dtd in the root directory when you unzip the installation archive. On Aug 21, 10:54 pm, Eric erjab...@gmail.com wrote: Is there an XML Schema or a DTD for the module.gwt.xml files? If there is, I'd like to install it in my IDE so it can support me while I write GWT

[ERROR] Line 25: No source code is available for type com.google.gwt.sample.showcase.client.content.text.RichTextToolbar; did you forget to inherit a required module?

2009-08-22 Thread Prashant Gupta
Hi, I am trying to use RichTextArea with RichTextToobar. I have added all the source files in \gwt-windows-1.7.0\samples\Showcase\src\com\google\gwt\sample\showcase\client to my source folder. Following is a snippet from my code : *Line 24 : *final RichTextArea content = new RichTextArea();

Re: gwt application does not run ie7

2009-08-22 Thread aftershock
No, I have not resiricted it. Since I asked this question, I came across the tool Ietester. I managed to find that the application works in Ie7,ie6 in ietester but it does not work on another machine where IE7 was installed. I guess it means that it does not work on certain Ie7 machines... I

Re: How to configure Jetty in GWT

2009-08-22 Thread willemsl...@gmail.com
Hi Christoph, Thanks for the info, that was a real good starting point. Also helpful where these posts: http://humblecode.blogspot.com/2009/05/gwt-16-using-jndi-datasource.html http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/3f5369b0aea1a265

Re: Problem with GWT RPC when parameter contains collection.

2009-08-22 Thread DaveS
Have you tried enabling debugging in the browser, to see if any JS exceptions are being thrown? On Aug 21, 7:01 pm, Arkady arka...@gmail.com wrote: Actually the request is never posted and therefore never arrives to the impl class. I suspect that the problem is with the serialization of the

Re: Image with embeded text

2009-08-22 Thread luigi
Hi, you can put a Image img=new Image() and after you can put some HTML html=new HTML(div id=1text blabala/div); and with style you can postion the text inside the image with absolute position, and after you can change the text with some native method you can do

Display form in GWT after redirect.

2009-08-22 Thread kamal
Hi, I want to redirect the to the other java class(dashboard.java) which is working fine, but after redirecting t that page, i want to add widgets and panels but i m not getting that how to display. To redirect i have given url that i have defined in web.xml, but error is that it is not a

Re: Confused about GWT + App Engine

2009-08-22 Thread Shawn Brown
On Sat, Aug 22, 2009 at 12:18 AM, philipmacphilipmacmena...@gmail.com wrote: Just to clarify, all of the AppEngine stuff runs exclusively upon Google Hardware, correct? That is, I cannot get my own local instance of an AppEngine. Well yes and no. Yes you can run in hosted mode on a local

Re: Use an Event Bus - Ray

2009-08-22 Thread lowecg2004
Hi Nathan, The gwt-presenter project defines an EventBus class which wraps the HandlerManager. I've put an example on my blog that converts the default starter application that is created by the Google Plugin for Eclipse to use: gwt-presenter (MVP, Event Bus Patterns); gwt-dispatch (Command

Re: Creating a plugin framework with GWT

2009-08-22 Thread Yanick
On Aug 21, 6:56 am, Dave davej2...@gmail.com wrote: I would like to extend this by allowing developers to produce custom forms. i.e allow developers to add in there own CustomTreeItems, without having to recompile with my code. My inital plan was to have a directory in the classpath, so at

Re: gwt application does not run ie7

2009-08-22 Thread Ian Bambury
Obviously *your app* does not work on certain Ie7 machines but unless, as Arthur requested, you indicate the error you are getting, or you post some code to reproduce the problem, there isn't much anyone can do to help. Ian http://examples.roughian.com 2009/8/22 aftershock ante...@gmail.com

Re: Problem with GWT RPC when parameter contains collection.

2009-08-22 Thread Yanick
On Aug 21, 2:01 pm, Arkady arka...@gmail.com wrote: Actually the request is never posted and therefore never arrives to the impl class. I suspect that the problem is with the serialization of the MyItem class. Your interface may be serializable, but are all your fields also serializable in

Re: generics, events, dependency injection

2009-08-22 Thread Etienne Neveu
Hi, I believe Ricardo was talking about using google-gin (Guice for GWT), and using what they call a provider method: In Guice, when you want to create your classes in a specific way, you can either create a class implementing ProviderMyCLass (

Tab Panel with one dropdown

2009-08-22 Thread James
Hello All, I have a requirement to convert a header bar with a list of menu items that run left to right across the top of a page to a tab panel. What they want is when the user selects a tab and hovers over the text at the bottom of the tab a dropdown appears that will open up a new page if the

Tab Panel with one dropdown

2009-08-22 Thread James
Hello All, I have a requirement to convert a header bar with a list of menu items that run left to right across the top of a page to a tab panel. What they want is when the user selects a tab and hovers over the text at the bottom of the tab with the mouse, a single dropdown item appears that

Re: Question about app context.

2009-08-22 Thread Chad
David, You don't have to do all that. Just reference your images as: images/status.png Notice the lack of the slash before images. If your images folder is in your war folder, it should work in both hosted mode and web mode. That slash would force a non-relative path requiring you to go

History question

2009-08-22 Thread MamboJumbo
Does anyone know how GWT history is maintained in http://code.google.com/p/gwt-google-apis website? There are no # signs in the URLs of the pages. Is there any other way to implement history other than explained in GWT tutorials? (like this one

Re: At new item to a list at each position

2009-08-22 Thread Tobe
The next problem is how to evaluate this nested form? Is there any good way to structure the fields and evaluate the complete form together with GWT? On Aug 18, 2:42 pm, Tobe tobias.jungnic...@googlemail.com wrote: I had AbsolutePanels with other Widgets added to it, but now I just have one

How to change the arrow icon of DisclosurePanel

2009-08-22 Thread hezjing
Hi May I know how to change the arrow icon of the DisclosurePanel? -- Hez --~--~-~--~~~---~--~~ 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: Creating a plugin framework with GWT

2009-08-22 Thread Nathan Wells
Dave, the first thing need to know is that you're attempting to break some core rules. Widgets can only be created on the client-side. There are numerous reasons for this, but essentially it boils down to this: RPC calls should be about the model... data transfer, not UI component transfer.

How to use a suggestbox where the value does not have to be in the suggestions

2009-08-22 Thread Jaap
Hi, I want to you a suggestbox like google uses it on google.com. So on google.com if I am typing I get selections (but none is selected yet). If I then press arrow down I can select one of the suggestions but if my suggestion is not there I keep on typing and hit enter and it searches what I

Re: What is Google App Engine?

2009-08-22 Thread GTM
I'm still kind of new to this, so from what I understand from your post and reading, google app engine would allow me to upload my own projects onto googles website (which is what you mean by google's existing infrastructure, right?). If I choose not to use it, the only difference is that I will

how to customize brows window (i want to show only specific file formats to select)

2009-08-22 Thread Rishi
i am new to GWT, i am creating a file upload web application, could you suggest me how i can customize the browse window, i want to show only specific file formats(type) to upload. thank you in advance. --~--~-~--~~~---~--~~ You received this message because you

Re: How to change the arrow icon of DisclosurePanel

2009-08-22 Thread alessandro.loche
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/4d0f853de76af51e Ale On 22 Ago, 20:56, hezjing hezj...@gmail.com wrote: Hi May I know how to change the arrow icon of the DisclosurePanel? -- Hez --~--~-~--~~~---~--~~ You received this

Re: javascript in war folder not included after building war file

2009-08-22 Thread Frank
Try this way: stylesheet src=../js/ext/resources/css/ext-all.css / On Jul 4, 11:35 pm, Marko Vuksanovic markovuksano...@gmail.com wrote: I have copied ext-js library into war folder of my gwt project. Then I have included it in my project.gwt.xml file as follows:         stylesheet

Re: javascript in war folder not included after building war file

2009-08-22 Thread Frank
Try this way: stylesheet src=../js/ext/resources/css/ext-all.css / On Jul 4, 11:35 pm, Marko Vuksanovic markovuksano...@gmail.com wrote: I have copied ext-js library into war folder of my gwt project. Then I have included it in my project.gwt.xml file as follows:         stylesheet

Why do we define AsyncCallbacks inline?

2009-08-22 Thread jack
In every RPC example I've seen, AsyncCallback are all defined inline? Why is this so? What are the advantages? Thanks in advance --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Hide pannel

2009-08-22 Thread rasp
Hi all! How can I create some hide-panel, like this: http://code.google.com/docreader/#p=google-web-toolkit-incubators=google-web-toolkit-incubatort=google-web-toolkit-incubator Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: How to use a suggestbox where the value does not have to be in the suggestions

2009-08-22 Thread Isaac Truett
suggestBox.setAutoSelectEnabled(false); On Sat, Aug 22, 2009 at 6:54 PM, Jaapjaap.hait...@gmail.com wrote: Hi, I want to you a suggestbox like google uses it on google.com. So on google.com if I am typing I get selections (but none is selected yet). If I then press arrow down I can

Re: No source code is available for ...

2009-08-22 Thread venki
There you are using Generator class in ur module right?? Go to API to find it's corresponding module XML file name. So that you can find it's module name and then inherit that module in ur module xml descriptor file. On Aug 5, 4:46 am, ent...@googlemail.com ent...@googlemail.com wrote: I am

Re: Why do we define AsyncCallbacks inline?

2009-08-22 Thread Jan Ehrhardt
It's common practice to use inner classes in Java for listeners or other simple things like callbacks. What you want to do in the case of a callback, is invoking a method after the the asynchronous RPC has been finished. The easiest solution would be, to put this method as an argument to the RPC

Re: History question

2009-08-22 Thread Jan Ehrhardt
If you select one of the libraries, listed there, you will come to the wiki, where you'll find URLs with '#'. It's the only save way to get history behaviour in an GWT app. You can try others, but they won't work so smooth. I think, the reason, why there are URLs without '#', is, that the page

[gwt-contrib] [google-web-toolkit] r5997 committed - Unbreak build by making parallel changes in Win/Mac that were made in ...

2009-08-22 Thread codesite-noreply
Revision: 5997 Author: j...@google.com Date: Sat Aug 22 16:42:14 2009 Log: Unbreak build by making parallel changes in Win/Mac that were made in Linux. Patch by: jat Review by: rjrjr (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=5997 Modified: