Re: setting java script variable

2009-12-21 Thread rjcarr
I think this should generally work. A couple notes: * You say it can't call the method ... does it say why? * Your alerts should be $wnd.alert() or I don't think it will work. On Dec 21, 8:57 pm, animesh wrote: > I have a javasript variable on my nocache.js >     >         var loginRequired

Centering a grid

2009-12-21 Thread Paul Grenyer
Hi Sorry for the second, probably simple question of the day, but how do I center a grid on a web page? I've tried: final Grid grid = new Grid(5,5); grid.setStyleName("gwt-Grid"); ... and .gwt-Grid { vertical-align: centre; horizontal-align: centre; } but it's ju

Re: Why doesn't ListBox ChangeHandler handle inserts?

2009-12-21 Thread Paul Grenyer
Hi On Tue, Dec 22, 2009 at 7:41 AM, Jim Douglas wrote: > The ListBox ChangeEvent tells you that the user changed the selected > index.  It's not fired when you change the selected index > programmatically, and it's not fired when you change the contents of > the list.  It's assumed that the progr

Re: Why doesn't ListBox ChangeHandler handle inserts?

2009-12-21 Thread Jim Douglas
The ListBox ChangeEvent tells you that the user changed the selected index. It's not fired when you change the selected index programmatically, and it's not fired when you change the contents of the list. It's assumed that the programmer knows when he did something to modify the list, so it's up

Why doesn't ListBox ChangeHandler handle inserts?

2009-12-21 Thread Paul Grenyer
Hi I've put together the following simple example: public void onModuleLoad() { final ListBox lb = new ListBox(); lb.setVisibleItemCount(5); lb.addChangeHandler(new ChangeHandler() { @Override public void onChange(Chan

Re: Can't get dev mode on external server working (GWT 2.0)

2009-12-21 Thread Swami
App.gwt.xml App.html Web Application Starter Project Your web browser must have JavaScript enabled

setting java script variable

2009-12-21 Thread animesh
I have a javasript variable on my nocache.js var loginRequired = "false"; I access it from GWT app as follows: public native static String isLoginRequired()/*-{ return $wnd.loginRequired; }-*/; I am trying to set th variable as follows. p

Re: GWT 1.7.1

2009-12-21 Thread Jim Douglas
I think you misunderstood that page; it describes only how to add this particular GWT module to your own GWT application: http://code.google.com/p/cobogw/ That module was developed specifically for GWT; it's not an arbitrary set of Java classes. The classes that you have developed in the past fo

Re: GWT 1.7.1

2009-12-21 Thread amicool
Thanks Jim, I agree with you, the information you have shared. actually I am trying to use the third party jar which is derived from the basic java packages within the GWT emulation limitation. Like hibernate, we can use other jars also... right? and while doing so I am getting the error. I hav

Re: How to use UIBinder to create customized tags

2009-12-21 Thread Rick
Thanks Thomas Widgets are now adding by implementing HasWidgets interface. But I need to do a little more. As there are tags in DockLayoutPanel -- , , in the same way, I want to create my own customized tags like , etc so that I can arrange my layout accordingly. Can it be possible. If it is, k

Re: How to use UIBinder with customized composite widget

2009-12-21 Thread Rohit Bansal
Thanks Thomas Widgets are now adding by implementing HasWidgets interface. But I need to do a little more. As there are tags in DockLayoutPanel -- , , in the same way, I want to create my own customized tags like , etc so that I can arrange my layout accordingly. Can it be possible. If it is, kin

Re: GWT 1.7.1

2009-12-21 Thread Jim Douglas
I think Jeff Chimene already answered this question for you: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/e31771defbdb6e47/892889ab68074f08#892889ab68074f08 GWT doesn't compile arbitrary Java classes to JavaScript. You can find the list of supported classes (and methods

Re: Can't get dev mode on external server working (GWT 2.0)

2009-12-21 Thread bch...@gmail.com
Can you share your App.html and App.gwt.xml ? On Dec 22, 10:55 am, Swami wrote: > If I open that url then I just get the static App.html displayed > > if I append ?gwt.codesvr=127.0.0.1:9997 to the end of the url I still > get the same > > clearing the cache makes no difference > > Here's my Ap

GWT 1.7.1

2009-12-21 Thread amicool
Hi, I want to integrate the GWT in my product for some UI screens. I have created the GWT project and extended the entry point class with the class from my product. Those related classes are packaged in product specific jar files. I have given the class name in tag in .gwt.xml I have added the s

Re: Can't get dev mode on external server working (GWT 2.0)

2009-12-21 Thread Swami
If I open that url then I just get the static App.html displayed if I append ?gwt.codesvr=127.0.0.1:9997 to the end of the url I still get the same clearing the cache makes no difference Here's my App.java file package org.ishafoundation.app.client; import com.google.gwt.core.client.EntryPoint;

Re: Gilead + Guice + Gwt-Dispatch

2009-12-21 Thread Henry
Curious, How does Gilead serialize BigDecimal? GWT can't handle BigDecimal yet ... What about byte[]? thx, Henry On Dec 21, 5:01 pm, debillin wrote: > Andreas - > > Don't you have to use the JDO Serialization Filters and > EngineRemoteService somewhere? > > Seems to me like the DispatchServlet

Re: SuggestBox MVP problem

2009-12-21 Thread FKereki
Matt Moriarity's idea suggested another possibility: using @UiField (provided=true) and using a Factory method to actually deliver the widget to the view. I'll give it a bit more thinking; I want to make sure testing is still simple. -- You received this message because you are subscribed to the

Re: Gilead + Guice + Gwt-Dispatch

2009-12-21 Thread debillin
Andreas - Don't you have to use the JDO Serialization Filters and EngineRemoteService somewhere? Seems to me like the DispatchServlet should extend Gilead's EngineRemoteService. On Nov 24, 7:31 am, philippe wrote: > I Marcos, > > I posted on a blog a simple exemple to configueredGileadinGWT/ >

Re: How can you open the GWT 2.0 samples in eclipse?

2009-12-21 Thread Henry
What's wrong with the ant target eclipse.generate? Read the README file ;) Cheers, Henry On Dec 21, 8:11 am, Jason Parekh wrote: > Hi Cian, > > Could you try importing each as an existing Java project?  Check > outhttp://code.google.com/eclipse/docs/existingprojects.html. > > jason > > On Sun,

Re: GWTShell dev mode problem

2009-12-21 Thread Henry
Hi Miguel, What I did was to prepend a src directory in my project and create my own implementation of GWTShell public class GWTShell extends DevMode { } Then enter the arguments from the Debug Configurations as you would for a Java application At the very least this won't give you a popup and p

Re: EntryPoint only for a .html page?

2009-12-21 Thread rjcarr
I think you have things backwards ... your html page retrieves the gwt code, not the other way around. So ... > 1. EntryPoint only for a .html page? If you have one entry point defined it can be loaded by any number of html pages, you just need to reference the javascript correctly. > 2. can we

Ok with Google to limit GWT app based on user agent?

2009-12-21 Thread amich...@gmail.com
Hello, I've made a GWT demo of an iPhone/iPod touch game. Currently, you can only play three levels in this GWT demo. I'm thinking of removing the level limit when the web demo is not accessed from an iPhone/iPod touch by checking the user agent. But from: http://www.google.com/support/webmast

Re: Session

2009-12-21 Thread hemodroid
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.getThreadLocalRequest ().getSession() On 21 déc, 23:17, Nicanor Cristian wrote: > What do mean by "session"? > > hemodroid ha scritto: > > > > > I dont know if it is related to Appengine or GWT, as i am using both > > in my application,

Re: GWTShell dev mode problem

2009-12-21 Thread Shawn Brown
Hi Miguel, > Is the war directory at the root of your project? yes >If you look at your .project file does it have the web app nature? Can you post what a .project file should look like? Originally mine was of web app nature but (please understand I never set it to be like this -- others have t

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-21 Thread Raziel
I made it work. Apparently now DevMode only pays attention if the URL that represents the request that loads the application has the gwt.codesvr parameter. I hope there's another way to preserve the old behavior where hosted mode was able to debug applications no matter how they were loaded, as lon

CSS backgroundColor property effecting MouseEvents?

2009-12-21 Thread David E.
I have a SimplePanel I use as a "glass panel" over other widgets. When I don't set the backgroundColor mouse down events on the panel transfer through to the Widget underneath it. However, if I add a colored background the mouse down events get consumed and the Widget underneath does not receive it

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-21 Thread Raziel
I added the -startup option, and although DevMode generates the gwt.codesvr parameter, when pasting it into the browser I still cannot get the breakpoints to work. In my case my GWT application is part of another application, and this one requires to go through a login page. Previously (i.e. GWT 1

Re: Session

2009-12-21 Thread Nicanor Cristian
What do mean by "session"? hemodroid ha scritto: > I dont know if it is related to Appengine or GWT, as i am using both > in my application, but it seems like sessions do not last after u > close your browser. > > -- > > You received this message because you are subscribed to the Google Groups >

Re: SuggestBox MVP problem

2009-12-21 Thread Matt Moriarity
The way I'm doing it will be to have the dependency injection framework create a SuggestOracle. Then have the view be injected with that oracle: @Inject MyView(MySuggestOracle oracle) { this.suggestBox = new SuggestBox(oracle); ... } Seems like a fairly simple solution, and does not require

Unable to run DevMode

2009-12-21 Thread Raziel
Hi, I just upgraded my application from 1.7.0 to 2.0, and while everything is working fine in production mode, when I try to run Development mode I get the following error: Loading modules com.appiancorp.gwt.appbuilder.ApplicationBuilderDev Public resources found in... [WARN] Err

Menubar, menuitem show on the left

2009-12-21 Thread Twentyseven
Hello, we're using menubar and menuitem for ou application's menu. The menu takes the entire screen width, so when when we have submenus on the right side of the menu they open on the right, but the user doesn't see them. Is it possible to open them on the left ? Thank's, -- You received this

Terrible IE8 performance when large number of DIVs is placed inside a table cell

2009-12-21 Thread WiseBoggz
I am using a FastTree (Incubator widget), which is GWT Tree-like widget implemented as a series of DIVs. This tree can have a fairly large number of nodes, for example 250. When this widget is placed into a table cell (for example in a VerticalPanel), the performance is just awful. The CPU spikes t

Session

2009-12-21 Thread hemodroid
I dont know if it is related to Appengine or GWT, as i am using both in my application, but it seems like sessions do not last after u close your browser. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to

Application Design question using GXT - Front End

2009-12-21 Thread Kady
Default Application Design question using GWT- Front End Hi All, I have a bit of experience with GWT but I'm not sure of the proper design in some cases and am such a cross road right now. An application I'm trying to design is of the search functionality. 1) Two modes - Simple Search / Advanced

Re: gwt-voices

2009-12-21 Thread olivier nouguier
hi AFAIK you can't access local file :) deploy your audio file and use http:// with repect to SOP (Same Origin Policy) HIH On Mon, Dec 21, 2009 at 8:31 PM, Alexei Telles wrote: > Hello guys, I am trying to start using the gwt-voices in my GWT > project. To start I tried the example: > > SoundCon

Re: NetBeans to eclipse

2009-12-21 Thread ni...@stsoftware.com.au
Why doesn't google support NB ? They are forcing us to use a different IDE for no good reason. -- 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 th

Re: Review of open issues

2009-12-21 Thread ed bras
Ok Chris, thanks for the clear and quick answer. I will have a look at the issues... I noticed that one was already commented by somebody.. -- 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-too

Re: MVP Beginner Question

2009-12-21 Thread pohl
I haven't used any of the pre-packaged frameworks, so I can't help you select from them. However, my team is using this architecture, having been inspired by the original talk at Google I/O. In my opinion, there is no better source of wisdom than that presentation, and its slides. If you haven'

Re: Review of open issues

2009-12-21 Thread Chris Ramsdale
The status "AssumedStale" simply means that the issue hasn't had any updates within the past year. If an issue is marked as such, and you know that a) it's still an issue and b) there is no plausible workaround, please add a comment and star the issue (if you haven't already). A quick update: I me

gwt-voices

2009-12-21 Thread Alexei Telles
Hello guys, I am trying to start using the gwt-voices in my GWT project. To start I tried the example: SoundController soundController = new SoundController(); Sound sound = soundController.createSound (Sound.MIME_TYPE_AUDIO_MPEG, "file:///home/alexei/teste.mp3");

MVP Beginner Question

2009-12-21 Thread Siva
Hi Everyone, I am new to the MVP/DI/Event Bus architecture/best practices. I am trying to understand the concept through the following examples/ frameworks, 1) mvp4g 2) gwt-mvp 3) http://blog.hivedevelopment.co.uk/2009/08/google-web-toolkit-gwt-mvp-example.html I understand that GIN is used f

Re: Review of open issues

2009-12-21 Thread Ed
What is the description/meaning of issues that are marked as "AssumedStale"? I see that some of my issues where marked as AssumedStale... Does this mean that they are simple forgotten till somebody report them again? Such that you assume that they might be solved in the 2.0 version? My worries: t

Re: TabLayoutPanel css

2009-12-21 Thread IvanRdz
and... what about this it seems like in standard.css is missing this style On 12 dic, 03:58, Benju wrote: > I had the exact same problem! > > On Nov 25, 2:39 pm, "P.G.Taboada" wrote: > > > Hi, > > > I am test drivingTabLayoutPanel, but I can't find any css in the > > themes delivered by gwt

How to get MouseEvents to click-through a PopUp Panel? (w/ Use Case)

2009-12-21 Thread David E.
How do I get mouse events to click through the PopUp panel (when it is highlighted) so that the FlexTable w/FocusPanel under the PopUp gets the event? The below code should be functional so you can see what I'm talking about. When the highlight button is pressed the PopUp panel goes ontop of the F

Re: Can't get dev mode on external server working (GWT 2.0)

2009-12-21 Thread Jason Parekh
Ok. What happens when you open that URL in Firefox? Can you try clearing your cache just in case. jason On Mon, Dec 21, 2009 at 12:26 PM, Swami wrote: > No, that was a mistake when composing the message I'm afraid. > > the urls really are the same. but it's just not working > http://localhost:

Re: UI Binder bugs - maybe config issue on my side(?)

2009-12-21 Thread Jason Parekh
Hi Peter, Would you mind zipping your project up and hosting it somewhere for me to download? I tried copying the pasted ui.xml and java file, but I was unable to repro the issues you're seeing in my simple project. Thanks, jason On Mon, Dec 21, 2009 at 11:16 AM, Peter wrote: > Dear all, > I'm

Re: Strange Validation Error when using UiBinder with images in Google Plugin for Eclipse

2009-12-21 Thread Fabio
the correct link: http://code.google.com/p/google-web-toolkit/issues/detail?id=4397 On 21 dez, 15:29, Fabio wrote: > Thanks, Jason! > > but the link appears to be broken, I got > "The requested URL /p/google-web-toolkit/issues/detail?can=2&q=4397 > was not found on this server." > when tried sta

Re: GWT2.0: POST request for some reasnos converted to OPTIONS in new hosted mode

2009-12-21 Thread Thomas Broyer
On Dec 21, 4:00 pm, Mike Chaliy wrote: > My application in hosed mode (http://localhost:) send plain HTTP > POST requests for example to thehttp://localhost/Inventory/. > > After upgrade from GWT1.7 to GWT2.0, all POST requests are now sent as > OPTIONS request. > > Method:                 O

Re: SuggestBox MVP problem

2009-12-21 Thread Nathan Wells
The way (I think) we do it is our View has a method: HasText getSuggestBox(SuggestOracle oracle) { if (oracle != this.oracle || this.suggestBox == null) //create a new suggest box with the oracle createOrReplaceSuggestBox(oracle); } return suggestBox; } This way ever

Re: Strange Validation Error when using UiBinder with images in Google Plugin for Eclipse

2009-12-21 Thread Fabio
Thanks, Jason! but the link appears to be broken, I got "The requested URL /p/google-web-toolkit/issues/detail?can=2&q=4397 was not found on this server." when tried starring the issue. best regards Fábio. On 21 dez, 14:50, Jason Parekh wrote: > Hi Fábio, > > Definitely a bug, thanks for postin

Re: Can't get dev mode on external server working (GWT 2.0)

2009-12-21 Thread Swami
No, that was a mistake when composing the message I'm afraid. the urls really are the same. but it's just not working http://localhost:8080/exist/app/gwt/App.html On Dec 21, 9:10 pm, Jason Parekh wrote: > Could you check your URLs again?  The URL given as the startup URL > argument in step #2 i

Re: Where is my GWT project build path ?

2009-12-21 Thread Jason Parekh
Hi Pote, That should be it. When you run the app, you may want to clear your browser's cache, as sometimes the stale cache creates unexpected results. jason On Mon, Dec 21, 2009 at 11:35 AM, Pote wrote: > Hi Jason, > >   For both of your suggestions above, I've successfully done. How > about t

Re: GWT 2.0 - Problem with Eclipse plugin and UiBinder "Field xxx has no corresponding field in template file yyy.ui.xml"

2009-12-21 Thread Jason Parekh
Hi Peter, Please disregard my reply. I just saw your other message and will ask you more questions in that thread ( see http://groups.google.com/group/google-web-toolkit/browse_thread/thread/89f952686038231b# ) jason On Mon, Dec 21, 2009 at 11:55 AM, Jason Parekh wrote: > Hi Peter, > > Thanks

Re: GWT 2.0 - Problem with Eclipse plugin and UiBinder "Field xxx has no corresponding field in template file yyy.ui.xml"

2009-12-21 Thread Jason Parekh
Hi Peter, Thanks for the log, unfortunately there doesn't seem to be anything relevant there. Is your project fairly simple? If so, would you be able to zip it up and send it my way? If not, has this error always been present, or only after some particular change? What happens when you clean t

Re: Strange Validation Error when using UiBinder with images in Google Plugin for Eclipse

2009-12-21 Thread Jason Parekh
Hi Fábio, Definitely a bug, thanks for posting about this issue. A workaround is to "import com.google.gwt.resources.client.ImageResource;" in your View.java. The problem is we find the logo() method in the superinterface of Images, but when we go to look up the method's return type, we try to r

Re: Where is my GWT project build path ?

2009-12-21 Thread Pote
Hi Jason, For both of your suggestions above, I've successfully done. How about the remaining step stated in http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#Upgrading such as - Update any run configurations or application compile and shell scripts What is the next procedure or

Re: Eclipse plugin: "Uninstall" button is disabled, unable to upgrade

2009-12-21 Thread Jaroslav Záruba
The buttons were disabled before I started "cleaning" the files. (And they were disabled not only for all Google-related features but for all nistalled software.) I tried to uninstall correctly everything Google-related; but Eclipse only did let me to remove entries under Window -> Preferences -> G

Re: DialogBox center broken in GWT 2.0

2009-12-21 Thread amich...@gmail.com
On Dec 21, 5:08 am, Thomas Broyer wrote: > On Dec 21, 3:34 am, "amich...@gmail.com" wrote: > > > Hello, > > > The Game Over dialog is not centered properly using thecentermethod: > > >http://dropzap.appspot.com > > > Is there a workaround? > > The dialog is actually properly centered, but what yo

Re: Eclipse plugin: "Uninstall" button is disabled, unable to upgrade

2009-12-21 Thread Jason Parekh
Hi Jaroslav, It sounds like you're wanting to uninstall so you can install a newer version. If this is the case, the good news is you don't have to uninstall to upgrade :) The bad news is that since you've deleted the "com.google" files manually, Eclipse is probably in an inconsistent state. Lo

Re: GWTCompiler Launch problem (Eclipse Plugin)

2009-12-21 Thread Rajeev Dayal
http://code.google.com/p/google-web-toolkit/issues/detail?id=4395 2009/12/21 Miguel Méndez > Could you file and issue for this? > > > On Fri, Dec 18, 2009 at 5:38 PM, bosakm wrote: > >> Part 2: >> >> It would be nice, when launching the GWTCompiler in the plugin, to be >> able to specify the spe

UI Binder bugs - maybe config issue on my side(?)

2009-12-21 Thread Peter
Dear all, I'm working with UI binder and seems to me I have not completed successfully installation or there's something wrong in it. In code listed below I can see several things I could not understand: 1. Project is complied OK and runs. However, having java code opened I can see error on lines s

Re: How can you open the GWT 2.0 samples in eclipse?

2009-12-21 Thread Jason Parekh
Hi Cian, Could you try importing each as an existing Java project? Check out http://code.google.com/eclipse/docs/existingprojects.html. jason On Sun, Dec 20, 2009 at 7:00 PM, Cian Montgomery wrote: > I am trying to get started with the gwt. I can build and run them from > the command line but

Re: Can't get dev mode on external server working (GWT 2.0)

2009-12-21 Thread Jason Parekh
Could you check your URLs again? The URL given as the startup URL argument in step #2 is missing the "app" directory, while the URL in step #5 contains it. jason On Mon, Dec 21, 2009 at 8:44 AM, Swami wrote: > Hi, > > I've followed the advice given in > > http://groups.google.com/group/google-w

Re: Articles / Tutorials

2009-12-21 Thread Jamie
Ooops, just found this link that describes it... http://code.google.com/webtoolkit/articles.html -- 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 fro

Re: import wildcards

2009-12-21 Thread Ian Bambury
If you are using Eclipse, you can import with a wildcard, then press CTRL+SHIFT+O (to [O]rganise the imports and give you only what you need) Ian http://examples.roughian.com 2009/12/21 Isaac Truett > No, it doesn't change the compiler output. Wildcard imports are > considered to be a poor co

Re: Review of open issues

2009-12-21 Thread mwaschkowski
OK, will do, thanks. On Dec 21, 10:41 am, Chris Ramsdale wrote: > As part of the 2.0 postmortem, we discussed the importance of cleaning > up the issue tracker in order to have a better view of high priority > issues that need to be resolved in upcoming releases. You may have > already seen actio

Re: Eclipse plugin Development Mode issue (uses GWTShell)

2009-12-21 Thread Miguel Méndez
Placing it higher in the classpath should do the trick. FWIW, we are going to make the war directory name configurable and we are also looking at updating the launch configurations to make things like the main type name over-ridable. Either one of those two options would have given you a work aro

Re: Where is my GWT project build path ?

2009-12-21 Thread Jason Parekh
For #2, you will have to set the GWT 2.0 SDK for your existing projects. Go to your Eclipse Preferences (either Window > Preferences or on Mac, Eclipse > Preferences), then Google > Web Toolkit, and ensure 2.0 is set as the default SDK. jason On Mon, Dec 21, 2009 at 11:05 AM, Jason Parekh wrote

Re: New layouts not playing nicely with Maps

2009-12-21 Thread Andrew Winter
Thanks, Eric. The timer thing does exactly what I wanted. Andrew. On Dec 21, 12:54 pm, Eric Ayers wrote: > On Mon, Dec 21, 2009 at 6:19 AM, Andrew Winter > wrote: > > Hi, > > > I have the exact same problem as Jeff. One difference between Jeff's > > case and Eric's case is that in Jeff's case,

Re: Where is my GWT project build path ?

2009-12-21 Thread Jason Parekh
Hi Pote, Since you're using the Eclipse plugin, you can upgrade to the GWT 2.0 SDK via the Eclipse update mechanism instead. Follow these instructions on Eclipse 3.5 (if you're using an older version, it will be similar with different menu items -- if it isn't working, let me know and I'll post i

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-21 Thread Jim Douglas
That's what I was thinking too. Not a problem, and I really appreciate your testing and followup on this. It's no problem for me to continue to start devmode from the command line for now. On Dec 21, 7:51 am, Rajeev Dayal wrote: > Hey Jim, > > Based on your comments in the bug report, it looks

Re: GWT 2.0 - Problem with Eclipse plugin and UiBinder "Field xxx has no corresponding field in template file yyy.ui.xml"

2009-12-21 Thread Peter
Here is what I can see in .metadata/.log: !ENTRY com.google.gwt.eclipse.core 4 0 2009-12-21 16:54:45.328 !MESSAGE Unexpected Exception !STACK 0 java.lang.ClassNotFoundException: com.google.gwt.dev.About at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.Acce

Re: import wildcards

2009-12-21 Thread Isaac Truett
No, it doesn't change the compiler output. Wildcard imports are considered to be a poor coding practice by many Java developers. On Mon, Dec 21, 2009 at 10:39 AM, S Frazier wrote: > The StockWatcher tutorial has me adding imports for each and every > class that it needs to use without explaining

Re: GWT 2.0 + Mac OS X Leopard + Eclipse 3.5.1 + Java 6: NSConditionLock unlock error messages?

2009-12-21 Thread Rajeev Dayal
Hey Jim, Based on your comments in the bug report, it looks like the fact that your app uses Swing is what causes the problem. In that case, -XstartOnFirstThread should not be present. Unfortunately, due to the way that the Web Application Launch Configurations work, there is no way to disable thi

import wildcards

2009-12-21 Thread S Frazier
The StockWatcher tutorial has me adding imports for each and every class that it needs to use without explaining whether there's a reason for not just using wildcards. Importing with import com.google.gwt.user.client.ui.*; would seem to be more expedient, but does the compiler naively add mo

Re: GWT 2.0 - Problem with Eclipse plugin and UiBinder "Field xxx has no corresponding field in template file yyy.ui.xml"

2009-12-21 Thread Peter
Jason, I can see the same problem. Made sure I have in source buildpath Include All and Exclude None. However, issue still persists. Regards Peter On Dec 14, 4:14 pm, Jason Parekh wrote: > Hi Julien, > > Thanks for pointing this scenario out, I've > openedhttp://code.google.com/p/google-web-too

Strange Validation Error when using UiBinder with images in Google Plugin for Eclipse

2009-12-21 Thread Fabio
Hi, I have two interfaces: public interface Banners extends ClientBundle { ImageResource logo(); ImageResource guj(); } public interface Icons extends ClientBundle { ImageResource br(); ImageResource us(); } In the main class, I group them together under a single

Re: GWTCompiler Launch problem (Eclipse Plugin)

2009-12-21 Thread Miguel Méndez
Could you file and issue for this? On Fri, Dec 18, 2009 at 5:38 PM, bosakm wrote: > Part 2: > > It would be nice, when launching the GWTCompiler in the plugin, to be > able to specify the specific jars/directories for it to use (similar > to being able to specify the classpath in an ANT script).

Re: NetBeans to eclipse

2009-12-21 Thread Jason Parekh
Hi Muhannad, Check out http://code.google.com/eclipse/docs/existingprojects.html . jason On Mon, Dec 21, 2009 at 2:34 AM, muhannad nasser wrote: > Dear All: > i have created a GWT Project in NetBeans and now i need to move it to > eclipse > when i open it using eclipse it does not recognize

Review of open issues

2009-12-21 Thread Chris Ramsdale
As part of the 2.0 postmortem, we discussed the importance of cleaning up the issue tracker in order to have a better view of high priority issues that need to be resolved in upcoming releases. You may have already seen action being taken as we have started reviewing, assigning, and requesting more

Re: GWTShell dev mode problem

2009-12-21 Thread Miguel Méndez
Is the war directory at the root of your project? If you look at your .project file does it have the web app nature? On Sat, Dec 19, 2009 at 7:04 AM, Andrey wrote: > Hello! > > I have war/WEB-INF/web.xml in my project but GWT-plugin still launches > GWTShell instead of DevMode. > What should I

Re: Grid (Sluggish Load)

2009-12-21 Thread Vince
Thank you for the feedbacks, Thomas and Trevor... I'm looking into the possible solutions now. Appreciate it... On Dec 4, 9:20 am, Trevor Skaife wrote: > Another thing you can do is not attach the grid to the page until it > is fully loaded, the dom operations are faster when the table isn't > d

Re: Non GWT Project's Classes

2009-12-21 Thread Jeff Chimene
GWT does not emulate the entire JRE. See the documentation for the classes that are emulated. You may find that for some "important" stuff, you want to do it via RPC calls to a Java server or not at all. On Sat, Dec 19, 2009 at 1:56 AM, gatty wrote: > hi , > Can we use non gwt project's classes

Re: Eclipse plugin: "Uninstall" button is disabled, unable to upgrade

2009-12-21 Thread Jaroslav Záruba
I'm sorry I have omitted that, I'm on Windows Vista64. I wish I knew where Eclipse reads the list of installed features from. On Dec 21, 4:07 pm, Jeff Chimene wrote: > Assuming you're on some Linux distro (you don't say in the  OP) This is a > problem w/ libgtk 2.0 I downgraded to 1.12(?). I'm r

Using Constants server-side?

2009-12-21 Thread omsrobert
I need to use the same localization mappings on the server as on the client. I can't instantiate Constants server-side. I suppose one method would be to read in the raw properties file and do a key lookup but I'd like to reuse the Java method interface if I can. Ideas??? -- You received this m

Re: Eclipse plugin: "Uninstall" button is disabled, unable to upgrade

2009-12-21 Thread Jeff Chimene
Assuming you're on some Linux distro (you don't say in the OP) This is a problem w/ libgtk 2.0 I downgraded to 1.12(?). I'm running Debian testing/unstable, so I downgraded to the version in stable. This may or may not be possible for you. 2009/12/21 Jaroslav Záruba > Hello > > I just can't rem

Re: Non GWT Project's Classes

2009-12-21 Thread mariyan nenchev
I think this is the only way, but i'm not sure. But it is quite easy and fast to do it. The only thing you have to do is to provide .java files at compile time, how to do it is up to you. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

GWT2.0: POST request for some reasnos converted to OPTIONS in new hosted mode

2009-12-21 Thread Mike Chaliy
My application in hosed mode (http://localhost:) send plain HTTP POST requests for example to the http://localhost/Inventory/. After upgrade from GWT1.7 to GWT2.0, all POST requests are now sent as OPTIONS request. Method: OPTIONS Host: localhost User-Agent: Mozi

Re: Articles / Tutorials

2009-12-21 Thread mariyan nenchev
Hi, Great, i think we all will benefit from this tutorial. Regards. -- 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 go

Eclipse plugin: "Uninstall" button is disabled, unable to upgrade

2009-12-21 Thread Jaroslav Záruba
Hello I just can't remove GEP from Eclipse 3.5, the "Uninstall" button is disabled. (Actually the button remains disabled for ALL the installed software, hence I'm suspecting Eclipse here rather than GWT.) Even when I remove all the folders and files that have "com.google" in their name Eclipse st

visualization dynamic data source

2009-12-21 Thread Tudor Andrei Raneti
I want to set up a line chart that gets its data dynamically from my data access object. Also i will host the visualization in a div inside a jsp (which i remember it works). I've been looking around and can't quite figure out how to put everything togheter though to get the chart to display (at al

problem with generated code

2009-12-21 Thread Torsten Völker
Hello to everyone, I've trouble with my gwt application. The Webcontainer throws the following exception first time accessing the web application: The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit The production environment is: WebContainer

Re: RootPanel vs RootLayoutPanel usage

2009-12-21 Thread prashant
I was also looking for something similar, and I found this comment. From RootLayoutPanel comments Note that, unlike {...@link RootPanel#get(String)}, this class provides no way * to get an instance for any element on the page other than the document * body. This is because we know

Confusion about declaring a Tree in UiBinder

2009-12-21 Thread evershore
Hi everyone, I've recently started digging into GWT 2.0 and the new UiBinder component. There is one particular issue that I couldn't solve yet and I didn't find anything on that in the Google Groups or anywhere throughout the net. How can I (correctly) declare a Tree widget using UiBinder? When

How can you open the GWT 2.0 samples in eclipse?

2009-12-21 Thread Cian Montgomery
I am trying to get started with the gwt. I can build and run them from the command line but there does not appear to be any way to open the samples in eclipse. Is there a way to do this? Thanks. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

Re: gwt and seam

2009-12-21 Thread amicool
Hi, If you are using eclipse then you shud create the web project by installing gwt plug in. Then add the pojo as per your requirement. After gwt plugin installed at eclipse you will find the GWT compiler icon left hand top corner. the project will get compiled. On Dec 20, 6:52 pm, zizou84 wr

Can't get dev mode on external server working (GWT 2.0)

2009-12-21 Thread Swami
Hi, I've followed the advice given in http://groups.google.com/group/google-web-toolkit/browse_thread/thread/95f41df46608410b http://code.google.com/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s and I still can't get this to work..

Error while adding third party jar

2009-12-21 Thread amicool
Hi, I want to integrate the GWT in my product for some UI screens. I have created the GWT project and extended the entry point class with the class from my product. Those related classes are packaged in product specific jar files. I have given the class name in tag in .gwt.xml I have added the s

VerticalPanel and onmouseover, onmouseout

2009-12-21 Thread christophe renaudineau
Hello I want that my VerticalPanel vPanel have got a listener onmouseover and onmouseout. My vPanel contains two others widgets. The probleme is that the listener onmouseout is up when the mouse come to the border of these two widgets while yet I am in my vPanel encompassing. Example : Button up

Where is my GWT project build path ?

2009-12-21 Thread Pote
Hi, I used Eclipse and have installed the GWT plug-in. Now I'd like to upgrade from GWT-1.7 to GWT-2.0 so I started to follow the instruction from the page http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#Upgrading. But due to I'm new in GWT/Java/Eclipse world, I have no idea

  1   2   >