Re: GWT, Wave extensions & API tutorials/resources

2009-11-30 Thread Angel Marquez
I guess to be more specific I'm looking for a tutorial that went from: 1. Setting up App Engine for a robot 2. Installing GWT using the eclipse plugin 3. Creating a Wave specific project under subversion 4. Incorporating a gadget that utilized gMap, twitter, mashup..webService that illustrated the

Re: GWT, Wave extensions & API tutorials/resources

2009-11-30 Thread Angel Marquez
Awesome. I'll take a look. The capabilities.xml has me. Are gadgets going to be the iPhone equiv? Thank you. On Sun, Nov 29, 2009 at 9:51 AM, mass0ne wrote: > Gadgets http://code.google.com/p/cobogwave/ > Robots also like to java http://code.google.com/apis/wave/ > > On Nov 28, 11:27 pm, Angel

Re: How to run GWT 2.0 RC2's hosted mode with another server?

2009-11-30 Thread Jan Ehrhardt
I'm using the Web App launch configuration and the plugin version, which is linked on the GWT 2.0 RC2 wiki page http://code.google.com/p/google-web-toolkit/wiki/GWT_2_0_RC Regards Jan Ehrhardt On Mon, Nov 30, 2009 at 4:07 PM, Chris Ramsdale wrote: > As a follow-up, are you using Web App Launch c

Re: MVP + UiBinder, thoughts?

2009-11-30 Thread Dalla
OK, so if I understand you correctly, you´re not using the @UiHandler annotation at all? Sounds like a good approach which won´t affect the MVP pattern as we know it at all. On 30 Nov, 23:31, Thomas Broyer wrote: > On 30 nov, 22:39, Dalla wrote: > > > I´ve been working on some small projects usi

Re: dynamic Messages/ImageBundle possible?

2009-11-30 Thread kgeri
Sri: Yes, performance is an issue - but not a very big one, I think. Think about it: how many messages do you have? Maybe a hundred or so? How often do you need to load the messages? Usually _once_, when initializing a widget. I think neither the size (about 3-5 bytes per call + constant size), n

Re: 404 not found when POSTing to servlet - GoDaddy issue

2009-11-30 Thread Daniel
I've currently removed it and just uploaded it as a war file. I'm not sure - maybe Tomcat will fix the issue when it explodes. On Nov 30, 4:36 pm, Daniel wrote: > I've been in touch with GoDaddy's tech support because I'm convinced > that it's an issue with the directory layout and/or config fil

Re: CSSResource w/ setStylePrimaryName

2009-11-30 Thread Jeff Chimene
On Mon, Nov 30, 2009 at 4:05 PM, Thomas Broyer wrote: > > On 30 nov, 18:17, Jeff Chimene wrote: > > Hi: > > > > Is it the case that I must use plaintext (non-obfuscated) CSS selectors > w/ > > setStylePrimaryName? > > > > For example, the following call > > setStylePrimaryName(INSTANCE.style().m

Re: Running tests on a faceless Red Hat 4 Linux

2009-11-30 Thread Christian López Espínola
Hi Nir, On Mon, Nov 30, 2009 at 7:28 PM, Feldman, Nir wrote: > I am trying to run a build of gwt maven project using Hudson deployed on > tomcat on a Linux 64 bit Red Hat 4. > > I am experiencing the following issue: > > > > [INFO] --- > > [IN

Re: Running tests on a faceless Red Hat 4 Linux

2009-11-30 Thread Chris Ramsdale
Nir, It looks like gtk_init_check() is failing because you are unable to open a X window. Are you sure that the X server is being started up successfully and that the user running the tests is the same user that starts the X server? You mention that it's a "faceless" Linux instance, were you inten

Re: UiBinder example for MenuBar

2009-11-30 Thread Sekhar
Thanks, any idea how you'd add separators? I.e., what's the equivalent of addSeparator() for UiBinder? Also, how do you iterate through the MenuBar items (was trying to add separators that way)? The only thing I found was getItems(), but that's protected... On Nov 30, 1:41 am, Thomas Broyer wrote

Re: Unexpected error

2009-11-30 Thread Thomas Broyer
On 30 nov, 19:26, marksea wrote: > Working through the GWT/GAE tutorial with OS X and Eclipse.  Things > seemed to be working until I got to the section on debugging.  As soon > as I started setting breakpoints I started getting unexpected exits as > soon as I hit them. Message is  "The applicat

Debugging serialization problems in 1.5.3

2009-11-30 Thread Eric
I have an application where many of my classes are in another project; all are Serializable, and both the .class file and the .java file are in the project jar file. The shared.jar file are in the WEB-INF\lib directory of my GWT project. All have no-argument constructors, and none have final insta

Re: CSSResource w/ setStylePrimaryName

2009-11-30 Thread Thomas Broyer
On 30 nov, 18:17, Jeff Chimene wrote: > Hi: > > Is it the case that I must use plaintext (non-obfuscated) CSS selectors w/ > setStylePrimaryName? > > For example, the following call > setStylePrimaryName(INSTANCE.style().menuButton()); > > works, but the secondary style references the obfuscated

Re: Google Web Toolkit 2.0 RC2 Now Available

2009-11-30 Thread kabram
I have a class Foo in com.mycompany.myapp.client that is annotated with @Bar where bar is defined in com.mycompany.myapp.client.gwt.rpc. The GWT compiler complains that it cannot find Bar. Is this a compiler bug? The compiler is able to see other classes in com.mycompany.myapp.client.gwt.rpc. My m

Stackpanel and CSS styling

2009-11-30 Thread Hazer
Hello there, I have a DecoratedStackPanel, and I want to style it so that each button in the stack has a different style (e.g. background color.) I've tried this.addStyleName("menu_style1"); but this adds the extra styles to all the buttons of the stackpanel. Is there a way to assign different st

Unexpected error

2009-11-30 Thread marksea
Working through the GWT/GAE tutorial with OS X and Eclipse. Things seemed to be working until I got to the section on debugging. As soon as I started setting breakpoints I started getting unexpected exits as soon as I hit them. Message is "The application GWT quit unexpectedly. The problem may

Re: How to position a PopupPanel like google does with error popups in Gmail

2009-11-30 Thread Thomas Broyer
On 25 nov, 21:20, Jaap wrote: > Hi > > I'd like to have PopupPanel which I show at the top and in the centre > of the screen when an error occured with a red background, with a > small text like "Oops an error occured please try again" > > How do I do this? I'm struggling with getting the right

Re: GWT-Incubator and event definitions

2009-11-30 Thread Thomas Broyer
On 30 nov, 19:52, Eric wrote: > The GWT Incubator event hierarchy differs from the GWT 1.7.1 event > hierarchy.  GWT 1.7.1 GwtEvents have a type, defined as > com.google.gwt.event.shared.GwtEvent.Type, where H extends > EventHandler.  Gwt Incubator events have a type that extends > com.google.gw

Re: Customizing The SuggestBox to Change Background Color/Border

2009-11-30 Thread Thomas Broyer
On 30 nov, 21:42, JAppetta wrote: > I would like to change the light blue  background color (or is it a > border?) that surrounds the dropdown  items in a SuggestBox. I've > tried changing the .gwt-SuggestBox  and .gwt-SuggestBoxPopup options > in my .css file but with no luck. What suggestBox r

404 not found when POSTing to servlet - GoDaddy issue

2009-11-30 Thread Daniel
I've been in touch with GoDaddy's tech support because I'm convinced that it's an issue with the directory layout and/or config files, but they keep telling me it's a different issue. Maybe it is (I don't really understand this apache/tomcat stuff). Site is at www.codingventures.net/FrontEnd.html

Re: Problem with JUnit testing if there's a tag in a module definition xml

2009-11-30 Thread Thomas Broyer
On 30 nov, 22:38, Al Murauski wrote: > Moving the stylesheet into the public folder helped. Thank you! > > BTW, the #2 solution (moving the stylesheet reference to the html host > page) wouldn't help in my particular case due to different stylesheet > loading order. I have styles that override t

Re: MVP + UiBinder, thoughts?

2009-11-30 Thread mariyan nenchev
Btw does someone know open source projects with more complex UI, than hupa project with this architecture, or some non trivial examples? -- 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..

Re: MVP + UiBinder, thoughts?

2009-11-30 Thread mariyan nenchev
I started to use MVP architecture today, it seems really good. I am little afraid if this event bus can handle the "pressure" if there are too many events for handling, but since this is in the core gwt architecture i hope it will. As for the uibinder i do not use it. I think it will be useful for

Re: MVP + UiBinder, thoughts?

2009-11-30 Thread Thomas Broyer
On 30 nov, 22:39, Dalla wrote: > I´ve been working on some small projects using GWT 1.6.4 and 1.7.1. > I know alot of people tried their best to pick up on Ray Ryans "GWT > Best practice" from Google IO 2009, > where using MVP was one of the main guidelines. > > I recently started looking at GWT

Re: Entry-level PHP and GWT tutorial

2009-11-30 Thread Angel Marquez
Sweet. Thanks for this. Nice last name by the way! MOOG On Mon, Nov 30, 2009 at 1:37 PM, Chris Moog wrote: > I put together a entry-level tutorial on using PHP with GWT. > > http://gwtquickstart.blogspot.com/ > > This is aimed at people who are new

MVP + UiBinder, thoughts?

2009-11-30 Thread Dalla
I´ve been working on some small projects using GWT 1.6.4 and 1.7.1. I know alot of people tried their best to pick up on Ray Ryans "GWT Best practice" from Google IO 2009, where using MVP was one of the main guidelines. I recently started looking at GWT RC1 and the new UiBinder. Using the UiBinder

Re: Problem with JUnit testing if there's a tag in a module definition xml

2009-11-30 Thread Al Murauski
Moving the stylesheet into the public folder helped. Thank you! BTW, the #2 solution (moving the stylesheet reference to the html host page) wouldn't help in my particular case due to different stylesheet loading order. I have styles that override those in the built-in gwt stylesheet, so my styles

Entry-level PHP and GWT tutorial

2009-11-30 Thread Chris Moog
I put together a entry-level tutorial on using PHP with GWT. http://gwtquickstart.blogspot.com/ This is aimed at people who are new to GWT and want to learn how to combine GWT with PHP on the server side. I use a local Apache webserver for PHP and GWT and show how the communication between clien

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

2009-11-30 Thread Prashant
Actually, my app manages data/content in form of modules and each module has its own GWT module to help it add/update data. A module may or may not load depending on request, so, corresponding GWT module may or may not load. I don't want to put all the GWT modules in a single .nocach.js because I a

Remote work GWT position available

2009-11-30 Thread charlie
I'm looking for someone with GWT experience ( GXT a huge plus ) to help with our property management system, and more projects to come. Experience with IBATIS a plus. SVN, OO, Unit testing all a must. Please send me a private response. Thank you, Charlie -- You received this message because y

Customizing The SuggestBox to Change Background Color/Border

2009-11-30 Thread JAppetta
I would like to change the light blue background color (or is it a border?) that surrounds the dropdown items in a SuggestBox. I've tried changing the .gwt-SuggestBox and .gwt-SuggestBoxPopup options in my .css file but with no luck. What suggestBox rule controls this property? I am using GWT 1.

Re: help with Timer !

2009-11-30 Thread Prashant
It is not clear what you want to ask and your code is no way related to RPC. I suggest you to go though docs first and then come back here with little better code snippet. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gro

help with Timer !

2009-11-30 Thread rizla
Hi all, I need to run an RPC, but that will not work how can I do to solve the problem?! I write the code below: Main Class: Timer t = new Timer() { public void run() { UtenteUtil.creaSegmenti(si,this); t.schedule(1

Re: incubator for GWT2

2009-11-30 Thread Yozons Support on Gmail
Yes, we'd like the incubator code to be usable without warnings in 2.0, before any changes are done under the hood for the refactoring work. -- 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-to

Re: GWT 2.0 RC2

2009-11-30 Thread Chris Ramsdale
On Mon, Nov 30, 2009 at 12:30 PM, Gabriel Thiesen wrote: > Hello guys, > > I have the most weird problem in history (Dramatic han? ). Well, the > thing is, My application just don't work in IE 6, 7 and 8 and the only > lead i could really find was a "Can't execute from a freed script". No > javas

Re: How to use "Add to client bundle" w/ GPE RC1 & RC2

2009-11-30 Thread Rajeev Dayal
Hey Jeff, Sounds like you found a bug with subtypes of ClientBundle that are inner classes. We're tracking it, and we'll take care of it for the final release. Thanks, Rajeev On Mon, Nov 30, 2009 at 12:46 PM, Jeff Chimene wrote: > > > On Mon, Nov 30, 2009 at 9:30 AM, Rajeev Dayal wrote: > >>

Re: WEB-INF/lib

2009-11-30 Thread Rajeev Dayal
Hi, See: http://code.google.com/eclipse/docs/existingprojects.html for information on this. Basically, you're following the right approach here. We don't integrate with Eclipse's J2EE facilities, which is why you cannot use the typical methods for configuring Web App libraries. We also provide

GWT-Incubator and event definitions

2009-11-30 Thread Eric
The GWT Incubator event hierarchy differs from the GWT 1.7.1 event hierarchy. GWT 1.7.1 GwtEvents have a type, defined as com.google.gwt.event.shared.GwtEvent.Type, where H extends EventHandler. Gwt Incubator events have a type that extends com.google.gwt.gen2.event.shared.AbstractEvent.Type. I

Re: Google Plugin 1.2

2009-11-30 Thread Rajeev Dayal
The Google Plugin for Eclipse 1.2 RC2 works with the GWT SDK 2.0 RC2 and App Engine SDK 1.2.6. 2009/11/29 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

Re: GWT 2.0 - startupUrl field

2009-11-30 Thread Rajeev Dayal
Previously, specifying the startupURL would cause the Hosted Browser to open up and navigate to this address by default. With the new Development Mode, the Development Mode debugging session is started by having the user enter the URL in their (real) brower's address bar. So, the startupURL is real

Re: incubator for GWT2

2009-11-30 Thread pjulien
Reading the full thread, that's not what I'm asking. This is asking to put the paging table in gwt 2. I'm just asking for an incubator refresh. On Nov 30, 12:48 pm, Sripathi Krishnan wrote: > I would love that to happen as well .. but the answer is no. > > Seehttp://www.mail-archive.com/google-

Re: GPE debug error: ContentViewer must have a content provider when input is set

2009-11-30 Thread Miguel Méndez
Would it be possible to get your .metadata/.log file? You can send it to me offline if you like. On Mon, Nov 30, 2009 at 1:12 PM, Jeff Chimene wrote: > > > 2009/11/30 Miguel Méndez > > The following line in the log makes me thing that JDT failed to load: >> >> The activator org.eclipse.jdt.int

Running tests on a faceless Red Hat 4 Linux

2009-11-30 Thread Feldman, Nir
I am trying to run a build of gwt maven project using Hudson deployed on tomcat on a Linux 64 bit Red Hat 4. I am experiencing the following issue: [INFO] --- [INFO] T E S T S [INFO] --- [INFO

Re: using with multiple modules with (history)ValueChangeHandler

2009-11-30 Thread Brian
I think the biggest problem you'll run into is that, when the history changes, the URL token may be meant for either of the two modules. You'll probably need to define a syntax for the history token that includes separate places for each module's tokens. It's then up to each module to only touch it

Re: GPE debug error: ContentViewer must have a content provider when input is set

2009-11-30 Thread Jeff Chimene
2009/11/30 Miguel Méndez > The following line in the log makes me thing that JDT failed to load: > > The activator org.eclipse.jdt.internal.ui.JavaPlugin for bundle > org.eclipse.jdt.ui is invalid > > > Searching the different groups it sounds like other people have run into a > similar problem w

Re: Styles for individual tabs

2009-11-30 Thread Brian
Check the javadoc for TabBar. It tells you what CSS selectors to use. Specifically, it sounds like you'll want to use these: .gwt-TabBar .gwt-TabBarItem { background-color: black; color: white; } .gwt-TabBar .gwt-TabBarItem-selected { background-color: white; color: black; } You'

Re: GWT AsyncCallback failing

2009-11-30 Thread Sripathi Krishnan
When something goes wrong on the server, GWT returns a StatusCodeException to the client. It doesn't propagate the exception that occurred on the server side, unless you explicitly declare it. So how do you find out what went wrong? In your RemoteService implementation, override the method doUnex

Re: incubator for GWT2

2009-11-30 Thread pjulien
Thanks, I'm surprised however that there is no solution to just bridge the 2 efforts until that solution is ready. On Nov 30, 12:48 pm, Sripathi Krishnan wrote: > I would love that to happen as well .. but the answer is no. > > Seehttp://www.mail-archive.com/google-web-toolkit-contribut...@google

Re: incubator for GWT2

2009-11-30 Thread Sripathi Krishnan
I would love that to happen as well .. but the answer is no. See http://www.mail-archive.com/google-web-toolkit-contribut...@googlegroups.com/msg08921.html --Sri 2009/11/30 pjulien > Is an incubator released planned for the GWT 2 RC? > > The current incubator still works but I'm annoyed I can

Re: How to use "Add to client bundle" w/ GPE RC1 & RC2

2009-11-30 Thread Jeff Chimene
On Mon, Nov 30, 2009 at 9:30 AM, Rajeev Dayal wrote: > Hey Jeff, > > What happens if you try to use the code-completion facilities? That is, in > the ClientBundle field, type "com" and hit CTRL-Space. Try choosing the > ClientBundle type name that way. > That works after refactoring the ClientBu

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

2009-11-30 Thread Sripathi Krishnan
Its okay to have multiple modules for modularity. But it is not okay to compile each of these modules separately and generate multiple .nocache.js. And even if you have some reason to compile twice, nothing can justify putting two separately compiled js files on the same html page. GWT works best

Re: How to position a PopupPanel like google does with error popups in Gmail

2009-11-30 Thread Brian
I spent some time getting something like this right myself. I didn't use PopupPanel, but my widget also fixed at the top of the page rather than the top of the screen (i.e., still visible while scrolling), but it does what I need it to do. Here's what I came up with for CSS: #messageContainer {

Re: GPE debug error: ContentViewer must have a content provider when input is set

2009-11-30 Thread Miguel Méndez
The following line in the log makes me thing that JDT failed to load: The activator org.eclipse.jdt.internal.ui.JavaPlugin for bundle org.eclipse.jdt.ui is invalid Searching the different groups it sounds like other people have run into a similar problem with other plugins. Here is a link to wh

GWT 2.0 RC2

2009-11-30 Thread Gabriel Thiesen
Hello guys, I have the most weird problem in history (Dramatic han? ). Well, the thing is, My application just don't work in IE 6, 7 and 8 and the only lead i could really find was a "Can't execute from a freed script". No javascript errors show up, besides this one that i was able to find usng th

CSSResource w/ setStylePrimaryName

2009-11-30 Thread Jeff Chimene
Hi: Is it the case that I must use plaintext (non-obfuscated) CSS selectors w/ setStylePrimaryName? For example, the following call setStylePrimaryName(INSTANCE.style().menuButton()); works, but the secondary style references the obfuscated primary style name. So selectors like "-hovering" and "

Re: GPE debug error: ContentViewer must have a content provider when input is set

2009-11-30 Thread Rajeev Dayal
Hey Jeff, Thanks for reporting this. I've done some investigation, and it seems that this problem is happening because one of our plugins accesses the class JavaElementImageDescriptor, which then causes the activation of some UI-related plugins. That results in a SWT exception, because the initial

Re: Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-11-30 Thread Eric Ayers
See the Gadget RPC example in the gwt-google-apis project for how to set the proxy in request builder. http://code.google.com/p/gwt-google-apis On Mon, Nov 30, 2009 at 10:17 AM, flokay wrote: > Hi, > > I've got an issue with my Google Gadget: > - I'm trying to read an XML file via RequestBuild

incubator for GWT2

2009-11-30 Thread pjulien
Is an incubator released planned for the GWT 2 RC? The current incubator still works but I'm annoyed I can't use that paging table without getting deprecation warnings on HandlerManager. Was hoping to see a proper GWT2 snapshot release that would just change the references to deprecated classes to

Re: Cross Domain JavaScript Call to Parent Window

2009-11-30 Thread Thomas Broyer
On Nov 30, 3:51 pm, animesh wrote: > I Have a GWt project which contains an IFrame hosted on > myapp.domain.com. > The IFrame loads a html file from differrent domain > provide.domain.com. > > Once the html in the IFrame gets loaded it calls > parent.myAppNotifyFunction(); > > myAppNotifyFunctio

How to get a reference to the Window object using GWTQuery?

2009-11-30 Thread Ittai
The title pretty much says it all. I'm trying to use jQuery's ability (hoping GWTQuery has implemented it) to pass a callback function to the window.resize something like this(example from jquery site): $(window).resize(function(){ alert("Stop it!"); }); but when I tryi to type $(window) in Eclipse

Re: How to use "Add to client bundle" w/ GPE RC1 & RC2

2009-11-30 Thread Rajeev Dayal
Hey Jeff, What happens if you try to use the code-completion facilities? That is, in the ClientBundle field, type "com" and hit CTRL-Space. Try choosing the ClientBundle type name that way. Rajeev On Wed, Nov 25, 2009 at 6:19 PM, Jeff Chimene wrote: > Hi, > > How does this feature work? The c

Re: Problem with JUnit testing if there's a tag in a module definition xml

2009-11-30 Thread Thomas Broyer
On Nov 30, 4:07 pm, Al Murauski wrote: > Hi, > > I'm getting a problem with unit tests if there's a tag in > the module definition xml. > > Here's the module that cauases problems: > > > EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.7.1/distro- > source/core/src/gwt-module.dtd"> >

ComboBox in Grid recover Store

2009-11-30 Thread salvador.ce
Hello, I created a ComboBox in a Grid (EditGridPanel). How do I recover the Store of the Combobox that the Grid? Thank you. -- 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...@googlegr

Re: The project XXX does not have any GWT SDKs on its build path

2009-11-30 Thread Miguel Méndez
The following open issue http://code.google.com/p/google-web-toolkit/issues/detail?id=3902 covers error level configuration. On Fri, Nov 27, 2009 at 3:56 AM, dominikz wrote: > I'm using eclipse plugin for GWT. My GWT projects are also compiled by > a build engine - therefore I'm exporting build.x

Problem with JUnit testing if there's a tag in a module definition xml

2009-11-30 Thread Al Murauski
Hi, I'm getting a problem with unit tests if there's a tag in the module definition xml. Here's the module that cauases problems: http://google-web-toolkit.googlecode.com/svn/tags/1.7.1/distro- source/core/src/gwt-module.dtd"> The error in my Eclipse

Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-11-30 Thread flokay
Hi, I've got an issue with my Google Gadget: - I'm trying to read an XML file via RequestBuilder and show it in the gadget (only for testing purpose) - If I try it in hosted mode with "onModuleLoad()" method and so on, it works well - But if i add it to iGoogle the string variable of response.getT

Cross Domain JavaScript Call to Parent Window

2009-11-30 Thread animesh
I Have a GWt project which contains an IFrame hosted on myapp.domain.com. The IFrame loads a html file from differrent domain provide.domain.com. Once the html in the IFrame gets loaded it calls parent.myAppNotifyFunction(); myAppNotifyFunction() resides with my GWT project. Basically the Iframe

Re: Code marked as error in Eclipse

2009-11-30 Thread Jeff Chimene
Perhaps the Java Build Path is not correct. You can use the Google Eclipse Plugin (GEP) to configure the build path. You don't mention which version of GWT you're using. Right-click on the project name, select "Build Path", select "Configure Build Path, select the "Libraries" tab. You should see

Re: custom resource generator

2009-11-30 Thread Thomas Broyer
On Nov 30, 10:41 am, afins wrote: > Hello, i'm trying to create a custom ResourceGenerator as an extension > of AbstractResourceGenerator. What modules i have to inherit? With > > >         >         > > > i got a long no-source-code-available list with > AbstractResourceGenerator, TreeLogge

Re: About GQuery

2009-11-30 Thread Ittai
If you're using eclipse you can just add the jar to your build path :right click on project-->build path-->configure build path, there in the libraries tab you can select to add a jar. Once you've added it you can click on the plus sign right beside it, select source attachment and click on edit- p

Re: How to run GWT 2.0 RC2's hosted mode with another server?

2009-11-30 Thread Chris Ramsdale
As a follow-up, are you using Web App Launch configurations or regular Java launch configurations? Also would you mind checking which version of the Google Eclipse Plugin you have installed? You can do this via Help->Install New Software and clicking on the "already installed" link in the lower rig

how to use maven plugin with gwt 2.0.0.rc1

2009-11-30 Thread balachandra maddina
Hi There, Im getting the following error when i do maven install on GWT 2.0.0.rc1 --

Re: How can I share classes (code) between 2 projects

2009-11-30 Thread FKereki
Check http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideModuleXml and, in particular, the "Dividing code into multiple modules" entry. Good luck! F.Kereki On Nov 30, 11:32 am, tedpottel wrote: > Hi, > > I would like to make some genrick classes that I could shar

comet

2009-11-30 Thread ben fenster
can anyone tell me what is the best free comet server i came across so meny diffrent servers and i dont know wether to implement one in rpc or use one of the other already built servers like Liberator -- You received this message because you are subscribed to the Google Groups "Google Web Toolk

Some Hints

2009-11-30 Thread Jacek Zebrowski
Hi ! I'm required to integrate my GWT app with permisions in postgres database. Idea behind it is that if user has permisions to a table all works ok - if not - jdbc throws exception to a service and i can handle it accordingly. Problem arises when i need to supply credentuals to log in - i can

Re: eclipse was not able to launch for unknown reason

2009-11-30 Thread Chris Ramsdale
I would suggest checking your workspace/.metadata/.log file for clues as to what is going on. Below is a link to more (albeit dated) info: http://www.eclipse.org/eclipse/platform-core/documents/3.1/debug.html On Mon, Nov 30, 2009 at 4:25 AM, f2009 bee wrote: > Hi, > > This is what in the eclip

Re: How to run GWT 2.0 RC2's hosted mode with another server?

2009-11-30 Thread Chris Ramsdale
Jan, The -style argument has been removed when running in "development" mode (formerly "hosted" mode). It is now configurable via the UI or an Ant property when you compile your code. The UI settings are available by right clicking on the project name, selecting Google->GWT Compile. From the resul

Re: How can I share classes (code) between 2 projects

2009-11-30 Thread olivier nouguier
You need to define a GWT Module. - Module: build a jar with .class and .java inside. + gwt.xml file - Application 1 & 2: add the jar to classpath && import the module. On Mon, Nov 30, 2009 at 2:32 PM, tedpottel wrote: > Hi, > > I would like to make some genrick classes that I could share betwe

Re: Error No source code is available for type javax.jdo.PersistenceManager

2009-11-30 Thread Paul Robinson
The error message literally means that there is no GWT module that defines a client source directory that includes javax.jdo.PersistenceManager It's likely that you are trying to access the database from GWT client code, which isn't going to work because client code is compiled to javascript, and

How can I share classes (code) between 2 projects

2009-11-30 Thread tedpottel
Hi, I would like to make some genrick classes that I could share between multple gwt projects. Does anybody know how I would do this? - Ted -- 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-

build.xml [Begginer]

2009-11-30 Thread Carlos
Hi all, Just finished a couple of tutorial on GWT and found myself with a problem...sure it is very basic, but I'm just starting... :) Having ANT + Eclipse + the GWT plugging I'm supposed to have a build.xml once I've created a project, so later can used ANT build it, or use ANT to host it... We

document.write in safari

2009-11-30 Thread lflobo
Hi! Don't know if this is the right place to ask, but either way I'll ask :) I've managed to embed a gwt page in a jsf+facelets page, it all works fine with firefox/opera/ie but the gwt part of the page simply doesn't load with chrome/safari (webkit related I suppose). I tried to catch the error

custom resource generator

2009-11-30 Thread afins
Hello, i'm trying to create a custom ResourceGenerator as an extension of AbstractResourceGenerator. What modules i have to inherit? With i got a long no-source-code-available list with AbstractResourceGenerator, TreeLogger, ResourceContext ... or is there a special location (

Re: How to disable default css

2009-11-30 Thread Chris Moog
You're right. The file is there by default (at least if you create a new project with the eclipse plugin). If you uncomment the "" section in your module.xml as you described it will not be interpreted by GWT and can be deleted. On 30 Nov., 08:49, Alex Luya wrote: > Alex Luya > >  Hi,I want to di

Error No source code is available for type javax.jdo.PersistenceManager

2009-11-30 Thread Bryan Harper
I have a simple app the I just got ready to persist some data with. When I added the PMF.java file I got errors like the one below. [ERROR] Line 15: No source code is available for type javax.jdo.PersistenceManager; did you forget to inherit a required module? I've used the persistence manager se

GWT Visualization API and HTTPS

2009-11-30 Thread Adr
I am using GWT 1.7 and have a page, compiled as client-side Java code into JavaScript containing a Google Visualization chart included in the Java code with "VisualizationUtils.loadVisualizationApi". This page is delivered over https. The problem being that the call to retrieve the chart from the

Re: GWT, Wave extensions & API tutorials/resources

2009-11-30 Thread mass0ne
Gadgets http://code.google.com/p/cobogwave/ Robots also like to java http://code.google.com/apis/wave/ On Nov 28, 11:27 pm, Angel Marquez wrote: > Anyone know of any good resources for developing wave extensions with gwt? > > -a -- You received this message because you are subscribed to the Goo

TabPanel and popups

2009-11-30 Thread Jing Xue
Hi, I'm trying to implement what I call "anchored popups". For example, a form field(the "anchor") would have a PopupPanel sliding open to its right, showing some validation error. The popup would calculate and set its position based on its anchor's just before showing itself. The problem come

Re: Default language

2009-11-30 Thread Martin Trummer
I thought GWT 1.6. would do this automatically - anyway an alternative to the serverside detection is to do it in js on the clientside in your html file - example: I'm sure this f** forum will completely mess up my source code again... why can't we have [code] tags in a developer(!) forum? /*

Re: PDF Viewer Widget

2009-11-30 Thread Lothar Kimmeringer
marcelpsouza schrieb: > My problem is that I can't let the user save or copy the PDF file to > his local machine. > As far as I see, google viewer let you download the file, I would like > a component that let me control this features. Isn't that an attribute you can set inside the PDF, i.e. setti

Re: PDF Viewer Widget

2009-11-30 Thread marcelpsouza
My problem is that I can't let the user save or copy the PDF file to his local machine. As far as I see, google viewer let you download the file, I would like a component that let me control this features. On 29 nov, 21:28, David T wrote: > Easiest method would be to use the Google Viewer app in

Re: GWT AsyncCallback failing

2009-11-30 Thread tony,benbrahim
Does your server side methid return 200 status 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 from this group, send email to google-web-toolki

Re: how to make communicate "two rootPanels"?

2009-11-30 Thread loveley
thanks, it is really what I was searching for. olivier. Jose Luis Roberto Asuncion a écrit : > Oh I see, what I meant was if this was your code in the html: > > > > in the GWT entry point class, > > place a button beside that textbox and add a Click Handler > > Button button = new Button("clic

How to run GWT 2.0 RC2's hosted mode with another server?

2009-11-30 Thread Jan Ehrhardt
Hi, I'm currently looking how our existing project can be updated to GWT 2.0 when it's released, but I'm running into some trouble. We use Eclipse with the Google plugin and currently we've got one web project, which will be started as a web project running on an Eclipse server runtime. This runt

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

2009-11-30 Thread Thomas Broyer
On Nov 26, 1:59 am, David T wrote: > Hi All, > > I'm trying to use the provided PopupPanel.center() method to center a > popup panel on the screen. This works fine on Opera and Safari > centering the popup relative to the browser window. In Firefox though > it centers the popup relative to the e

Re: Default language

2009-11-30 Thread Jan Ehrhardt
We do it in a Java / Spring application by server side detection. The HttpServletRequest object knows about the preferred language of the requesting browser. Instead of a plain HTML page we return a JSP, that allows us to set the language property as a meta tag. GWT's i18n mechanism reads the prope

Re: Running GWTTestCase in Netbeans IDE and "Java heap space" error

2009-11-30 Thread danielgue
Hi and many thanks again. You can disregard my last post. I found the solution. I simply confused "Additional Compiler Options" in Netbeans' Build/Compiling menu with "VM options" under Run menu. When I entered "-Xms512m -Xmx512m" into "VM options" I finally got a green bar and everything works.

Re: Running GWTTestCase in Netbeans IDE and "Java heap space" error

2009-11-30 Thread danielgue
Hi pjulien, List! Hey many thanks for your reply and also your blog posting. It seems you have had the same problem like me and the company I work for are having. Many thanks for dealing with that and also specifically replying to my inquire. The problem is still there although I deleted the defa

Re: how to make communicate "two rootPanels"?

2009-11-30 Thread philippe
Hi Olivier, I suggest you rather use an object that will keep a reference to your widget. Thus, you can access them without going through the rootPanel. ex: class ElementsManager() { private final TextBox myBox; public ElementsManager() { super(); myBox = new TextBox(...) } publ

Re: UiBinder example for MenuBar

2009-11-30 Thread Thomas Broyer
On Nov 30, 8:25 am, Sekhar wrote: > 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. Have a look at:

  1   2   >