Re: LayoutPanel support in RC2

2009-11-29 Thread Benju
It turns out I just forgot to update my lib folder's jars thus I was only using the new GWT Development mode. On Nov 28, 9:42 pm, Benju b...@fastcastmedia.com wrote: Has anybody managed to get the GWT layout panels to work in RC2?  In the javadoc for SplitLayoutPanel has the following example

click event completes in hosted mode but not once deployed?

2009-11-29 Thread darren
Hi Everyone In my web application i have some links that, when clicked are supposed to: - use an RPC to get some data from the server - construct a new Panel - insert the panel into the browser document My solution seems to work as expected while in hosted mode, but not once the application is

Modules,HTML,Entrypoint class

2009-11-29 Thread ToXiC
hi to all ... am new to GWT could i know what each of the above do (Module,HTML,Entrypoint class), i want to use a new HTML inside an iframe inside the same project...could somebody help me with it with some code..and ofcourse the new HTML should also be able to use the GWT code -- You

Code marked as error in Eclipse

2009-11-29 Thread Dauvis
I am just getting started with GWT and I encountered what I am going to say is an annoyance. I used the plugin to generate the starter project. I can run the starter project in hosted mode without any errors and I do not see any compile errors. When I open the java file on the client side,

Re: protocol buffer? anyone tried?

2009-11-29 Thread Shawn Pearce
On Sat, Nov 28, 2009 at 08:21, asianCoolz second.co...@gmail.com wrote: anyone tried using PB on GWT?  from my research i came across saying performance issues with PB http://tinyurl.com/yem57ud Yea, that guy isn't doing protobufs in a browser friendly way. The best way to do protobufs in the

Looking for GWT developers for education project

2009-11-29 Thread pb
I am looking for GWT developers to work on an integrated admin platform for use in education in the UK. I need a strong and experienced team of 2-4 developers to work on the program at a fixed rate for the first year. email pboot...@gmail.com with relevant details for more info. p.s. i haven't

Re: Should we use maven or not for a project?

2009-11-29 Thread John Armstrong
Maven can call ant so you can say it super-sets ant in that way. Since starting with GWT (coming from Wicket which assumes Maven) I have to say, I deeply miss Maven dependency management. My attempts to mavenize my GWT Designer projects have failed and I lack the time to debug and get things

Re: how to make communicate two rootPanels?

2009-11-29 Thread Jeune
Just reading your question, I think it's possible. I am doing something similar right now. I put values in a hidden input box with an id and then I add a click handler to a button in a panel. When I click the button it gets the values in the hidden input box and displays them in the panel. On

Strange scroll behaviour of ScrollPanel

2009-11-29 Thread romant
Hi, I tried to implement a widget which would realize the commonly used FAQ page approach (which means questions as links situated at the top and answers below, when a link is clicked the panel scrolls at the correct position to show the corresponding answer). I expected that using ScollPanel and

eclipse was not able to launch for unknown reason

2009-11-29 Thread f2009 bee
HI, Two months ago I downloaded eclipse 3.5 and use it to install gwt windows 1.7.1. I then tried the stockwatcher tutorial and it works fine. 2 days ago for some unknown reason I could not launch eclipsec exe. The eclipsec exe launched for 2 secs and the program exit. Please advise how I

Re: Modules,HTML,Entrypoint class

2009-11-29 Thread Sripathi Krishnan
A *Module* is a collection of client side java code. A Module is defined by a .gwt.xml, and it can inherit other modules. The GWT compiler takes a module as its input, and compiles it into javascript code. A Module has exactly one *entry point class*. (It is possible to define a module without an

Re: Should we use maven or not for a project?

2009-11-29 Thread Alan Hadsell
On Nov 28, 10:43 pm, John Armstrong siber...@gmail.com wrote: Since starting with GWT (coming from Wicket which assumes Maven) I have to say, I deeply miss Maven dependency management. My attempts to mavenize my GWT Designer projects have failed and I lack the time to debug and get things

Re: dynamic Messages/ImageBundle possible?

2009-11-29 Thread Sripathi Krishnan
There is a reason why a lookup method doesn't exist - performance. With methods like getBasketballImage() and getFootballImage(), the compiler knows which images are actually used. So, if you have 10 sports but only end up using two - the compiler can automatically discard the other eight. With

Re: eclipse was not able to launch for unknown reason

2009-11-29 Thread Joe
Hi, if you could be more specific: any errors, any messages, screenshots maybe? Or if you could attach your eclipse.ini file so we take a look at it. A description of your PC hardware and software can be helpful as well. Good luck! On Nov 29, 5:56 pm, f2009 bee f2009...@gmail.com wrote: HI,

Re: click event completes in hosted mode but not once deployed?

2009-11-29 Thread darren
ok, I found my problem. In my client code, I had a try/catch expression that would ignore a NullPointerException when a Map entry was attepted that didn't exist. I replaced this, and my web app works as expected. On a similar note, does anybody have any javascript debugging tips for GWT? I have

Re: how to make communicate two rootPanels?

2009-11-29 Thread loveley
hello, thank you, but I did not really understand what you mean. the hidden input box , it's an HTML component or is it coded in GWT?and if it is in GWT, is it an an other root panel? olivier. Jeune a écrit : Just reading your question, I think it's possible. I am doing something similar

Template field and owner field types don't match

2009-11-29 Thread Jeff Chimene
Hi: I'm trying to figure out how to create a custom widget in RC2, based on ClickyLink. The error I get is Template field and owner field types don't match: com.google.gwt.dom.client.Element != com.my.office.client.view.CloseButton I'm sure message this means something to someone. the ui.xml

Re: how to make communicate two rootPanels?

2009-11-29 Thread Jose Luis Roberto Asuncion
Hi, the hidden input box is coded in the HTML page generated from GWT. But it's not what you need. You need a textbox where you want to input something. So put it in the HTML page and give it an id. Back in GWT, retrieve the contents of the text box and then make a new panel, put the contents of

Google Plugin 1.2

2009-11-29 Thread Lúcio Camilo
Why Google Plugin 1.2 for Gwt 2.0 rc2 needs the sdk for GWT 2 and the older Plugins doesnt need of the SDK?? -- 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: Should we use maven or not for a project?

2009-11-29 Thread jbdhl
Based on your replies it seems that maven may make some processes easier but is non-trivial to setup with GWT, and if the project is relatively small with very few developers it might even add more complexity to the project that it removes. Do you agree? It's still not clear to me if it will be

Re: Template field and owner field types don't match

2009-11-29 Thread Jeff Chimene
On Sun, Nov 29, 2009 at 12:57 PM, Jeff Chimene jchim...@gmail.com wrote: Hi: I'm trying to figure out how to create a custom widget in RC2, based on ClickyLink. The error I get is Template field and owner field types don't match: com.google.gwt.dom.client.Element !=

mozilla-hosted-browser.conf and Gentoo Linux

2009-11-29 Thread Mary-Anne Wolf
I am trying to get some existing GWT code to work in hosted mode within Eclipse 3.4 on Gentoo Linux on i686 hardware. I tried adding /usr/lib/mozilla-firefox into mozilla-hosted- browser.conf and I get the error ** Unable to find a usable Mozilla install ** I tried adding /usr/bin/konqueror and

Re: GWT 2.0.0rc2 ::: Unknown argument: -portHosted

2009-11-29 Thread Lúcio Camilo
I was testing the GWT 2 RC2 and everything was ok, untill it stoped to word with all my apps with the error below: 21:26:31.938 [ERROR] [teste] Unable to load module entry point class br.com.teste.client.AppTeste (see associated exception for details) java.lang.NullPointerException: null at

Re: protocol buffer? anyone tried?

2009-11-29 Thread Marco Massenzio
it's actually a Bad Idea to use PBs on the client-side of a GWT app (as much as it's an exceptionally good idea to use them on the server- side, especially if your server is talking to a remote back-end, possibly written in something other than Java) For a start, there's a lot of Reflection

Re: GWT 2.0.0rc2 ::: Unknown argument: -portHosted

2009-11-29 Thread Lúcio Camilo
I forgot to put this error : 21:34:42.523 [ERROR] [teste] Failed to load module 'teste' from user agent 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)' at Lucio-PC:52685 2009/11/29 Lúcio Camilo

Re: GWT 2 RC1 working for anyone?

2009-11-29 Thread Chris Ramsdale
Sekhar, Are you experiencing the same problems using RC2? On Wed, Nov 25, 2009 at 12:01 AM, Sekhar sek...@allurefx.com wrote: I'm having a terrible time trying to get 2RC1 to work. Almost every step is nightmare, like: (1) Refuses to install on FF (3.5.5) or IE 8 (8.0.6001.18372) - it

Re: PopupPanel.center() not working in Firefox 3.5.5

2009-11-29 Thread David T
They have the same problem as using PopupPanel.center(), for firefox they return the web page dimensions instead of the browser window dimensions. I implemented my own method to try to fix this. On Nov 27, 10:11 am, Dazza dazzacoll...@gmail.com wrote: Why aren't you using GWT provided

Re: PDF Viewer Widget

2009-11-29 Thread David T
Easiest method would be to use the Google Viewer app in an iframe. https://docs.google.com/viewer On Nov 28, 7:58 pm, Jan Ehrhardt jan.ehrha...@googlemail.com wrote: Creating such a simple Widget shouldn't be to difficult. Just take an 'iframe' and let it show the PDF. Regards Jan Ehrhardt

super-source used to complete java.lang.Math?

2009-11-29 Thread fker...@gmail.com
I know the super-source element can be used to add unimplemented classes to the JRE, but can you use it to add a missing static method? For example, say you need the static double cbrt(double a) java.lang.Math method that calculates the cube root of a. How would you go about implementing that, if

[Google-Gin] laizly loading panels depending on a button clicked.

2009-11-29 Thread Jacek Żebrowski
Hi ! I ahve lets say - 10 panels and 10 buttons. I want to load diffrent one on each click - but i want to do it laizly - is there a way to do it other than creating 10 providers and using switch/case ? i wonder how to keep things pretty. -- Jacek -- You received this message because you

Compile in GWT 2.0

2009-11-29 Thread Lúcio Camilo
Is there any button in the plugin for GWT 2 like was in Hosted Mode at GWT 1.7 to compile the code? -- 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

Re: Compile in GWT 2.0

2009-11-29 Thread FKereki
In the Eclipse toolbar, you should have a red toolbox icon that means GWT Compile Project. On Nov 29, 11:18 pm, Lúcio Camilo luciocam...@gmail.com wrote: Is there any button in the plugin for GWT 2 like was in Hosted Mode at GWT 1.7 to compile the code? -- You received this message because

Re: laizly loading panels depending on a button clicked.

2009-11-29 Thread FKereki
Couldn't a LazyPanel help you out? Check http://googlewebtoolkit.blogspot.com/2008/11/improving-performance-with-on-demand.html and http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/LazyPanel.html On Nov 29, 11:11 pm, Jacek Żebrowski yacho1...@gmail.com

Re: click event completes in hosted mode but not once deployed?

2009-11-29 Thread FKereki
NullPointerExceptions can become JavaScriptExceptions when going from hosted (development) mode to web (production) mode. Check out http://code.google.com/p/google-web-toolkit-doc-1-6/wiki/DevGuideJavaCompatibility On Nov 29, 5:07 pm, darren minof...@gmail.com wrote: ok, I found my problem.

Re: how to make communicate two rootPanels?

2009-11-29 Thread loveley
hi, ok, but how to Back in GWT, retrieve the contents of the text box? what is the statement? olivier. Jose Luis Roberto Asuncion a écrit : Hi, the hidden input box is coded in the HTML page generated from GWT. But it's not what you need. You need a textbox where you want to input

Re: laizly loading panels depending on a button clicked.

2009-11-29 Thread Jacek Żebrowski
FKereki pisze: Couldn't a LazyPanel help you out? Check http://googlewebtoolkit.blogspot.com/2008/11/improving-performance-with-on-demand.html and http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/LazyPanel.html i dont know if it will act as expected

Re: Decent development hardware for GWT ?

2009-11-29 Thread Carl Pritchett
It was a customer order similar to http://www.pacstarcomputer.com.au/index.php?productID=6121 but with the i7 950 and GA-EX58-UD4P On Nov 19, 5:22 pm, hjo1620 hjo1...@gmail.com wrote: Thanks for your answer: i7 based machine with 1 rpm disks, ought to be good enough for me, since my

Beginner

2009-11-29 Thread Vicky Thakor
Hello Friend I'm using GWT in netbeans and oce i complied and run the page then after how can i run the application without netbeans like the file given in GWT directory index.html then after Showcase.html which display all GWT uses. If any one have site or ebook for starting GWT in netbeans or

Re: how to make communicate two rootPanels?

2009-11-29 Thread Jose Luis Roberto Asuncion
Oh I see, what I meant was if this was your code in the html: input type=text value= id=my_textbox in the GWT entry point class, place a button beside that textbox and add a Click Handler Button button = new Button(click here); button.addClickHandler(new ButtonClickHandler());

Re: PDF Viewer Widget

2009-11-29 Thread Vishwas Raiborde
try the Swf widget ,first you need to convert the pd pages to swf via the swf9 api and then load the pages via the SWFWidget On Fri, Nov 27, 2009 at 5:25 PM, marcelpsouza marcelpso...@gmail.comwrote: Hi people, Does anyone know if there is a GWT widget to view PDF files? I know that I can

Themes in GWT 2.0 RC2

2009-11-29 Thread Benju
Are the themese in GWT 2.0 going to create a default look and feel for layoutpanel widgets? I have noticed that inheriting the default themes does not affect the look of the following... DockLayoutPanel, , SplitLayoutPanel, StackLayoutPanel, TabLayoutPanel Is this something that will be added

UiBinder example for MenuBar

2009-11-29 Thread Sekhar
Is there an UiBinder example for MenuBar/MenuItem somewhere? I can see the top elements in the MenuBar, but am not making much progress beyond that. I did check the use cases at http://code.google.com/p/google-web-toolkit/wiki/UiBinder. -- You received this message because you are subscribed to

Re: Beginner

2009-11-29 Thread rjcarr
Hi Vicky. If the code is compiled and you aren't making any server calls then you're done. Just put all of the web pages and compiled javascript (the module code) onto your web server and browse to the page. If you are making server calls then things are quite a bit trickier. Check the docs for

Re: using 2 or more GWT modules in a single html page

2009-11-29 Thread rjcarr
I want to split my GWT code into multiple GWT modules, compiling all modules separately and then linking all GWT modules (.nocache.js files) in a single page.* Is it a good practice?* Sure, this is pretty typical, although there isn't much sense breaking things up if you only have one entry

Re: Styles for individual tabs

2009-11-29 Thread rjcarr
I use tabs quite a bit I don't think the functionality you're looking for is possible given the library code. You could either get the TabBar source and extend it to take in a style name for each tab (shouldn't be too hard), or write your own TabBar from scratch (again, not too hard). Good luck!

How to disable default css

2009-11-29 Thread Alex Luya
Alex Luya Hi,I want to disable all css come with GWT,and have followed this thread,and commented the entry inherits name='com.google.gwt.user.theme.standard.Standard' / in Project.gwt.xml ,but seems that standard css still be generated in directory /war/project/gwt,so how to disable it

[gwt-contrib] Re: Refactor SessionHandler and BrowserChannelClient to allow other OOPHM clients than HtmlUnit

2009-11-29 Thread Thomas Broyer
On Sun, Nov 29, 2009 at 4:52 AM, Amit Manjhi wrote: Thanks for the patch. I agree with John that this is way too late for 2.0 at this point. I will get back to this for 2.1. Please file a public issue for this refactoring and attach the patch to that. OK, no problem. Issue filed at

Re: [gwt-contrib] Add support for launching a default browser from Swing interface

2009-11-29 Thread Sanjiv Jivan
Can the default launch URL use the IP instead of localhost? I use VMWare on my OSX machine and often access the dev mode URL from a Windows VM using IE for testing purposes. Currently I need to manually replace localhost with the machine IP in the URL. It's not a big deal but will add a little

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

2009-11-29 Thread codesite-noreply
Comment by arunabha.gh: @mark.renouf Atfer the patch and build when the app is started in firefox I get a 'GWT module 'xxx' needs to be (re)compiled, please run a compile or use the Compile/Browse button in hosted mode'. This happens even after compiling the project. Any ideas? For more

[gwt-contrib] [google-web-toolkit] r7195 committed - Change Swing find keybindings to better match expected values: Ctrl-G ...

2009-11-29 Thread codesite-noreply
Revision: 7195 Author: j...@google.com Date: Sun Nov 29 20:11:12 2009 Log: Change Swing find keybindings to better match expected values: Ctrl-G for find next, Ctrl-Shift-G for find previous (Cmd instead of Ctrl on Mac). Patch by: jat Review by: amitmanjhi (TBR)

[gwt-contrib] [google-web-toolkit] r7196 committed - Merge trunk r7194 into this branch...

2009-11-29 Thread codesite-noreply
Revision: 7196 Author: j...@google.com Date: Sun Nov 29 20:24:51 2009 Log: Merge trunk r7194 into this branch Make RunStyle public, improve docs. svn merge --ignore-ancestry -c7194 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .

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

2009-11-29 Thread codesite-noreply
Comment by arunabha.gh: @thomas.matthijs That did the trick, thanks For more information: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors