Re: Problem with custom serialization in GWT 2.0

2010-01-06 Thread David
Hi, I noticed the same problem. I was first assuming that it was the app server (which I migrated at the same time) and they fact that we put our gwt-servlet.jar at ear level. But I was thinking last night that custom serializers might just be completely broken in this release.

Re: RPC vs HTTP requests

2010-01-06 Thread Jeff Schnitzer
I normally try to stay out of religious wars, so I'm going to skip over everything everyone else has said in this thread (most of which I disagree with) and address the original poster directly: Since you're asking this question, I presume you are a novice with GWT. In this case, your path is

Re: Re: GWT Intigration with existing project .... Hosted mode issues.

2010-01-06 Thread girishrathod
Further .. I tried to implement your suggession, the class-path entry was the missing part which was leading to the previous error in CASE II described below. -src --main ---java com -gwtAppl (MyApplication.gwt.xml) --client --server I added the source entry of 'client'

Re: RPC vs HTTP requests

2010-01-06 Thread Thomas Broyer
On Jan 6, 7:48 am, Jan Ehrhardt jan.ehrha...@googlemail.com wrote: Hi Jeff, I didn't try it yet, but a subclass of JavaScriptOject should be instantiated by 'GWT.create(Report.class)'. Gin resolves these dependencies automatically without any configuration (the same with Constants for i18n,

Re: Standards mode requirement for GWT 2.0

2010-01-06 Thread Thomas Broyer
On Jan 6, 2:48 am, N G nistar...@gmail.com wrote: Does DockLayoutPanel and SplitLayoutPanel require the page to be in standards mode? Does this also apply to the RootLayoutPanel? AFAICT this applies to all the LayoutPanels. -- You received this message because you are subscribed to the

Re: TabLayoutPanel with default styles not working on IE.

2010-01-06 Thread Alejandro D. Garin
Hi, Check this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4447 On Wed, Jan 6, 2010 at 8:40 AM, mariyan nenchev nenchev.mari...@gmail.comwrote: Hi, I am really frustrated from this TabLayoutPanel. It is even not displayed with its default style(which is none) in IE.

What's a good graph/chart library

2010-01-06 Thread darkling
I'm looking to build charts for my current application. These charts aren't incredibly complex but they do have 2 Y axises and require me to do a mix of bar and line graphs on a single chart. Basically the left Y axis should represent the line graph while the right y axis should present the bar

Storing Google Map Markers

2010-01-06 Thread sam
Previously, I stored Google Map points (lat, long) and other info at a certain location in mysql table from GWT via RPC. Now, I want to make it independent of external stuff like mysql. What is the best way to store the data in GWT? Can anyone guide me to the procedure and means? thanks, sam --

Re: Twitter Emulation Using GWT

2010-01-06 Thread Prashant
Awesome! I'll be grateful to have the code!! :) Also, your interface is reading from Twitter. I was looking at reading from a database on the server side and sending it to the client. How can I go about that? On Dec 27 2009, 4:27 pm, Nicolas Wetzel wetz...@gmail.com wrote: go on

Re: TabLayoutPanel with default styles not working on IE.

2010-01-06 Thread mariyan nenchev
Hi, I saw, this, but i can't even make the TabLayoutPanel to be visible. For unknown reason one of the divs has overflow:hidden and the tap is not displayed. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send

Re: Should DecoratorPanel implement ProvidesResize?

2010-01-06 Thread Matt Moriarity
Perhaps we need an equivalent DecoratorLayoutPanel. Only LayoutPanels seem to implement ProvidesResize. On Jan 5, 12:13 pm, huherto humbe...@itbrain.com.mx wrote: I am trying to find a solution for this.http://groups.google.com/group/google-web-toolkit/browse_thread/threa... But I am

Re: GWT 2.0 w/ IntelliJ IDEA 7.0.5

2010-01-06 Thread Matt Moriarity
If you really want decent IntelliJ GWT support, you should probably upgrade to IDEA 9.0, which added explicit support for GWT 2.0 and GWT 1.7. On Jan 5, 4:17 am, Steve Sinai ssi...@yahoo.com wrote: Up until now I've used Eclipse for writing occasional GWT apps, but I'm not an Eclipse expert and

UiBinder MenuBar

2010-01-06 Thread rmuller
Is there a way the set the Command property of the MenuItem when the menu is declared by UiBinder? Of cause i can declare a UiField for every MenuItem. But that is not what I want. Ronald -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: What's a good graph/chart library

2010-01-06 Thread Chris Ramsdale
There are several out there. You might want to check out: http://code.google.com/p/gwt-chronoscope/ On Wed, Jan 6, 2010 at 8:30 AM, darkling darkling...@aol.com wrote: I'm looking to build charts for my current application. These charts aren't incredibly complex but they do have 2 Y axises

Re: Storing Google Map Markers

2010-01-06 Thread Deanna Bonds
Because of the number of significant digits in a lat,lng - I converted the array of map markers to JSON in the client and kept it a string all the way to the database. That way I never lost any precision, which I did if I tried to parse the JSON to native data types in any layer. On Jan 6, 7:33 

Re: RPC vs HTTP requests

2010-01-06 Thread Jeff Chimene
On Wed, Jan 6, 2010 at 4:33 AM, Thomas Broyer t.bro...@gmail.com wrote: On Jan 6, 7:48 am, Jan Ehrhardt jan.ehrha...@googlemail.com wrote: Hi Jeff, I didn't try it yet, but a subclass of JavaScriptOject should be instantiated by 'GWT.create(Report.class)'. Gin resolves these

Re: test folder not included in the Java Build Path Source

2010-01-06 Thread Chris Ramsdale
You're not doing anything wrong, this should work in a more automated fashion. Would you mind entering an issue? http://code.google.com/p/google-web-toolkit/issues/list - Chris On Tue, Jan 5, 2010 at 6:19 PM, Pion onlee2...@gmail.com wrote: I am using GWT 2.0 plugins on Eclipse Galileo.

Re: What's a good graph/chart library

2010-01-06 Thread darkling
I've examined quite a few but I was curious if any are gaining widespread acceptance for best at what I need. I've been experimenting with gchart but I'm finding it awkward to use in some cases. Any advice would be great Thanks On Jan 6, 10:03 am, Chris Ramsdale cramsd...@google.com wrote: There

Re: GWT 2.0: Debug with Firefox and Eclipse

2010-01-06 Thread Rogério Valente
Check if the message below is on console output. [WARN] The class com.google.gwt.dev.HostedMode is deprecated and will be removed -- use com.google.gwt.dev.DevMode instead. If the message is present on your console, change your main class from com.google.gwt.dev.HostedMode to

Upgraded to GWT 2, tests now time out

2010-01-06 Thread Jon Vaughan
Hi, I recently upgraded to GWT 2 from 1.5.x. My tests, for some reason, are now failing when I run them from Ant: run-gwt-tests: [junit] WARNING: multiple versions of ant detected in path for junit [junit] jar:file:/C:/Program%20Files/eclipse/plugins/

Re: Slowdown of GWT while loading

2010-01-06 Thread George Georgovassilis
Hi Raul, If you can't modify the server.xml then you have still two ways to compress the html. 1. Use a filter. You can specify a filter in your web.xml and compress all static content on the fly. Bad for server side performance, but it will do the trick. 2. gzip the .cache.html files on the

Re: test folder not included in the Java Build Path Source

2010-01-06 Thread Thomas Broyer
On Jan 6, 4:15 pm, Chris Ramsdale cramsd...@google.com wrote: You're not doing anything wrong, this should work in a more automated fashion. On the other hand, it shouldn't be included in the build path when you hit compile or run web application because you usually: - put tests in the same

Re: Should DecoratorPanel implement ProvidesResize?

2010-01-06 Thread huherto
On Jan 6, 7:32 am, Matt Moriarity matt.moriar...@gmail.com wrote: Perhaps we need an equivalent DecoratorLayoutPanel. Only LayoutPanels seem to implement ProvidesResize. Thanks Matt. May be we do. Also DecoratorPanel is implemented using tables. Perhaps such DecoratorLayoutPanel should be

Re: test folder not included in the Java Build Path Source

2010-01-06 Thread Miguel Méndez
On Wed, Jan 6, 2010 at 11:11 AM, Thomas Broyer t.bro...@gmail.com wrote: On Jan 6, 4:15 pm, Chris Ramsdale cramsd...@google.com wrote: You're not doing anything wrong, this should work in a more automated fashion. On the other hand, it shouldn't be included in the build path when you

Re: Use smartgwt or not

2010-01-06 Thread huherto
I will be taking a look at QxWT. I still think there is a need for a good widget library. I've been looking for alternatives. I used mygwt but stop using it when they did the bait and switch lat year. I lost several months of work and I'm still pissed. Also, I don't like that they try to redo the

pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i have a presentation tomorrow and every thing works great i am using gwt 2.0 but when i compile and run from the compiled version all of the http request does not work -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: pls help !!!!!!!!!!

2010-01-06 Thread olivier nouguier
You should use firebug to learn more ! On Wed, Jan 6, 2010 at 5:55 PM, ben fenster fenster@gmail.com wrote: i have a presentation tomorrow and every thing works great i am using gwt 2.0 but when i compile and run from the compiled version all of the http request does not work -- You

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i use it and no errors there also i am accessing php pages threw http request the php works ok and when i use it in hosted mode every thing is great but when i use it in compile nothing works On Jan 6, 7:03 pm, olivier nouguier olivier.nougu...@gmail.com wrote: You should use firebug to learn

Re: pls help !!!!!!!!!!

2010-01-06 Thread olivier nouguier
euh your backend is full php ? If true I have no knowlegde :( On Wed, Jan 6, 2010 at 6:11 PM, ben fenster fenster@gmail.com wrote: i use it and no errors there also i am accessing php pages threw http request the php works ok and when i use it in hosted mode every thing is great but when

Re: test folder not included in the Java Build Path Source

2010-01-06 Thread Pion
I just filed it as issue 4454 http://code.google.com/p/google-web-toolkit/issues/detail?id=4454 On Jan 6, 7:15 am, Chris Ramsdale cramsd...@google.com wrote: You're not doing anything wrong, this should work in a more automated fashion. Would you mind entering an issue?

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i am also using smart gwt could this be the reason for my problems? On Jan 6, 7:15 pm, olivier nouguier olivier.nougu...@gmail.com wrote: euh your backend is full php ? If true I have no knowlegde :( On Wed, Jan 6, 2010 at 6:11 PM, ben fenster fenster@gmail.com wrote: i use it and no

How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
In my GWT app my RemoteService implementation executes code from abc.jar that has server-side only Java code. I have included abc.jar in my project's class path, but it does not belong to any module inherited by this project's module. When I run this app in Hosted Mode I get tons of Error

Re: Use smartgwt or not

2010-01-06 Thread Open eSignForms
The list of widget libraries is exhausting mostly because it seems so retro. If the desktop windowing world were this fragmented for GUIs, life would have been harder. And if developers had to worry about licensing issues to write GUIs, life would have been harder. Widget libraries needs to be

Re: MVP example on Wiki, completing the thought.

2010-01-06 Thread Chris Ramsdale
I went round and round about this one myself, but ultimately came to the conclusion that you ether want a generalized representation of the model that you pass to the view, or have the the presenter pass in an interface to the view that is used when the view is ready to populate some widget with

Re: TabLayoutPanel with default styles not working on IE.

2010-01-06 Thread Alejandro D. Garin
Are you using standard mode? On Wed, Jan 6, 2010 at 11:17 AM, mariyan nenchev nenchev.mari...@gmail.comwrote: Hi, I saw, this, but i can't even make the TabLayoutPanel to be visible. For unknown reason one of the divs has overflow:hidden and the tap is not displayed. -- You received this

Re: TabLayoutPanel with default styles not working on IE.

2010-01-06 Thread mariyan nenchev
I don't know. How to check, how to change? On Wed, Jan 6, 2010 at 7:39 PM, Alejandro D. Garin aga...@gmail.com wrote: Are you using standard mode? On Wed, Jan 6, 2010 at 11:17 AM, mariyan nenchev nenchev.mari...@gmail.com wrote: Hi, I saw, this, but i can't even make the TabLayoutPanel

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
how can it be that something runs great in hosted from the browser it self but dont work in compile ??? On Jan 6, 7:21 pm, ben fenster fenster@gmail.com wrote: i am also using smart gwt could this be the reason for  my problems? On Jan 6, 7:15 pm, olivier nouguier

Re: pls help !!!!!!!!!!

2010-01-06 Thread mariyan nenchev
What do you mean by all of the http request does not work On Wed, Jan 6, 2010 at 7:49 PM, ben fenster fenster@gmail.com wrote: how can it be that something runs great in hosted from the browser it self but dont work in compile ??? On Jan 6, 7:21 pm, ben fenster

Re: What's a good graph/chart library

2010-01-06 Thread Alexander De Leon
gflot [1] is a GWT wrapper around the Flot javascript library. It is not as rich as gchart [2], but it is quite easy to use. Alex [1] http://code.google.com/p/gflot/ [2] http://code.google.com/p/gchart/ On 06/01/2010, at 16:21, darkling wrote: I've examined quite a few but I was curious if

Re: What's a good graph/chart library

2010-01-06 Thread Niklas Derouche
I would suggest using JFreeChart serverside. It's pretty straight forward and as far as I know there is no JS-based charting component that has the same range of capabilities. But then again, if you are only looking to do dual y axis and multiple types then there might be something out there that

Re: GWT 2.0: Debug with Firefox and Eclipse

2010-01-06 Thread y
I opened a new project and it works fine. I am still trying to migrate existing project. Any idea what I may be missing? I already switched the SDK to 2.0 On Jan 6, 7:25 am, Rogério Valente rogerio.vale...@gmail.com wrote: Check if the message below is on console output. [WARN] The class

Re: TabLayoutPanel with default styles not working on IE.

2010-01-06 Thread Alejandro D. Garin
use this doctype declaration at the top of your html !doctype html On Wed, Jan 6, 2010 at 2:46 PM, mariyan nenchev nenchev.mari...@gmail.comwrote: I don't know. How to check, how to change? On Wed, Jan 6, 2010 at 7:39 PM, Alejandro D. Garin aga...@gmail.comwrote: Are you using standard

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i send them they work ok in hosted but in compiled when i get to check status i get exception the site is www.vzooo.com if anyone can check it out and see i will apreceate it it is relly strange i noticed that the gwt compile only compiles 5 out of 6 permutations but it says compiled ok is

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rohit Bansal
Hi I think there are client packages in your abc.jar. And GWT is giving you warning about these client packages as on server there should not be client packages. Regards Rohit On Jan 6, 9:23 am, Rob Wood rob.a.w...@gmail.com wrote: In my GWT app my RemoteService implementation executes code

Re: GWT 2.0: Debug with Firefox and Eclipse

2010-01-06 Thread y
OK. I got it fixed. Had to clean some stuff in the app's XML and class path. Was a bit messy, but now it's working. Thank you all On Jan 6, 7:25 am, Rogério Valente rogerio.vale...@gmail.com wrote: Check if the message below is on console output. [WARN] The class com.google.gwt.dev.HostedMode

CustomHeader Widget for DisclosurePanel

2010-01-06 Thread Charan
I am trying to put in a custom widget for the header of DisclosurePanel. How can I use the images (disclosurePanelOpen, disclosurePanelClosed) that come with the SDK in the custom widget class? Thanks -- You received this message because you are subscribed to the Google Groups Google Web

Re: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2010-01-06 Thread Bert
I'm experiencing the same problem. On Dec 8 2009, 6:24 pm, Luis Fernando Planella Gonzalez lfpg@gmail.com wrote: Hi. We're using GWT 1.7 and I'm starting to experiment with 2.0 RC2 to evaluate GWT.runAsync(). However, now as I compile the app, I get warning for deprecations in all RPC

Re: GWT 2.0: Debug with Firefox and Eclipse

2010-01-06 Thread Igor Ganapolsky
Did you try relaunching your application and Firefox after you installed the plugin? On Jan 5, 8:52 pm, y y...@cs.washington.edu wrote: Anyone managed to debug with GWT 2.0? I don't get a prompt to install the developer plugin. Even when I installed it manually, nothing happens. Breakpoints

Eclipse + Windows 7 + GWT Debug As... doesn't work

2010-01-06 Thread itgch...@googlemail.com
Hello, i'm new in GWT Developping. So i installed on my Windows 7 Computer the Eclipse GWT plugin. All Works, can create Project's usw. But then, when i want to Debug or run the Development Server i'm always getting this error: Could not connect to remote UI listening at localhost:49409. Using

Issue on JSORestrictionsChecker

2010-01-06 Thread Felipe Toledo
Hi all, I am using JSO types as my model entities supertype. It was working fine, until I add a new one. Apparently there is no reason to give me this error. The stack trace is: com.google.gwt.dev.jjs.InternalCompilerException: Already seen an implementing JSO subtype (JsTask) for interface

Re: DockLayoutPanel inside custom DecoratorPanel

2010-01-06 Thread serveez
try g:DockLayoutPanel height=100% in firefox or chrome On 2009年12月6日, 上午11时08分, Will wil...@gmail.com wrote: I am trying to create a custom DecoratorPanel that will work with DockLayoutPanel as the child widget. I tried a normal DecoratorPanel and found that only Widgets in the North

Problem: certain types of J2EE authentication with GWT 2.0 and Eclipse 3.5 plugin no longer work

2010-01-06 Thread Ian.G
Hi Folks - my first post on the discussion group so big thanks to everyone involved in this great project. We've recently moved up to GWT 2.0 from GWT 1.7 and everything has gone quite smoothly so far. One of the issues I have with the application I'm developing is that it needs to be secured by

deRPC issues

2010-01-06 Thread MikeN
Hi, I think I've found two issues in the new deRPC code, but I would like some confirmation before spamming the issuetracker. I'm using the GWT 2.0 release codebase, on various platforms. The first issue is in RpcServlet. By default the code can't find the *.gwt.rpc files (in production mode) if

JsonpRequestBuilder only works across domains?

2010-01-06 Thread Ryan
Hi All, I've been experimenting with the a href=http://google-web- toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/jsonp/client/ JsonpRequestBuilder.htmlJsonpRequestBuilder/a that comes with GWT 2.0 and it works fine when I connect to the Google calendar service shown in docs but I'm having

Re: GWT 2.0: Debug with Firefox and Eclipse

2010-01-06 Thread Igor Ganapolsky
Actually, I just relaunched the debugger and switched to debug mode, and am now able to hit the breakpoints. On Jan 5, 1:45 pm, y y...@cs.washington.edu wrote: When GWT was working with its internal browser, debugging from Eclipse was simple. I just marked the breakpoints and ran as debug.

JBoss Seam and GWT

2010-01-06 Thread Johnathan James
Hello.. I am looking for a good example of running a seam-gen application, and adding a GWT view. If you have one, or have been able to manipulate the org.jboss.seam.example.remoting.gwt example from the Seam project, I would appreciate your help. Johnathan -- You received this message because

Working in development mode in GWT with php

2010-01-06 Thread Skeezix
Hi, I've recently started on the Client-Server Communication part of the tutorial of GWT.I've done everything that is said in the JSON and JSON - PHP part of the tutorial, yet im unable to get the JSON data from the php script.My setup uses XAMPP and the Stockwatcher project is located at

Re: GWT 2.0: Debug with Firefox and Eclipse

2010-01-06 Thread Igor Ganapolsky
It doesn't seem to hit breakpoints for me either. Is it supposed to debug with an external Firefox browser? On Jan 5, 1:45 pm, y y...@cs.washington.edu wrote: When GWT was working with its internal browser, debugging from Eclipse was simple. I just marked the breakpoints and ran as debug.

Re: Issue on JSORestrictionsChecker

2010-01-06 Thread Felipe Toledo
interface IEntity { int getX(); } class A extends JavaScriptObject implements IEntity { public int getX() { return Y(); } public final native int Y() /*-{ return this.y; }-*/; } class A extends JavaScriptObject implements IEntity { public int getX() { return Z(); }

Re: gwt and seam

2010-01-06 Thread Johnathan James
Yes, it gets compiled, but as a GWT project, not a Seam project. Does anybody have any references for adding a GWT form with widgets, and event handling, to a Seam-Gen created project? Would it be too much to ask for that doc to use JBoss as the app server? Source code? *crossing fingers* On

Where is the Widget Gallery

2010-01-06 Thread ojm
Hello, I'm BRAND SPANKIN' NEW to GWT. I've just installed Eclipse and GWT and am working through the Getting Started tutorial. In one of the steps, the tutorial says something like First, look at the Widget Gallery and select the GWT widget for each UI element. Since I'm brand new to this stuff,

Shortcuts.java missing code

2010-01-06 Thread Igor Ganapolsky
I am following the GWT Getting Started guide at: http://code.google.com/webtoolkit/doc/1.6/gettingstarted.html#Install It states about Shortcuts.java: Line 54 of the file is the line that constructs the Mail tab. add(images, new Mailboxes(images), images.mailgroup(), Mail); However,

Google eclipse plugin terms question

2010-01-06 Thread Fred
Hi, if (and it's a big if) I were about to create a m2eclipse project configurator for Google Eclipse Plugin, it seems I'd have to ask google first (http://code.google.com/eclipse/terms.html §9.1). Do you know if accessing the plugin source code would be possible? regards, Fred Bricon -- You

Re: HostedMode requires plugin for internal browser

2010-01-06 Thread gerryh
I had this same problem, and tried all the options described here (I had even re-installed eclipse, plugin, etc. etc.). I tried deleting hosted.html, cleaning and compiling, but I was still getting the missing plugin message. Finally, I went to IE and cleared the cache. This worked. Beware if you

how to use CssResource.obfuscationPrefix to have semi-obfuscated css class name

2010-01-06 Thread emerix
Hi, I found on this page http://code.google.com/intl/fr-FR/webtoolkit/doc/latest/DevGuideClientBundle.html#Selector_obfuscation that you can use the property CssResource.obfuscationPrefix to choose how to obfuscate your css selectors. However I don't know if it is possible to use it to have a

Binding Style Fields with UiBinder

2010-01-06 Thread GAbraham
I am trying to access an inline Style in a programmatic way. I have tried following the example in the developer guide. From .xml file ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' ui:style type='NotImportant.UserWidgetStyles'

SSL and built-in server

2010-01-06 Thread ZER0
Hi there, First of all sorry for my english. I wonder if it's possible setup the SSL in the built-in server of GWT; or if the only solution is use the -noserver option. If I'm correct GWT uses jetty, so I presume I have to save the jetty.xml with the SSL connectors as explained here:

Re: Deprecation warning in all RPCs dealing with collections on GWT 2.0 RC2

2010-01-06 Thread Chris Ramsdale
Please star the issue and add any relevant data you may have. - Chris On Wed, Jan 6, 2010 at 8:14 AM, Bert roexb...@gmail.com wrote: I'm experiencing the same problem. On Dec 8 2009, 6:24 pm, Luis Fernando Planella Gonzalez lfpg@gmail.com wrote: Hi. We're using GWT 1.7 and I'm

Re: pls help !!!!!!!!!!

2010-01-06 Thread Sudeep S
use -style PRETTY and -logLevel DEBUG to get detailed messages On Wed, Jan 6, 2010 at 11:33 PM, ben fenster fenster@gmail.com wrote: i send them they work ok in hosted but in compiled when i get to check status i get exception the site is www.vzooo.com if anyone can check it out and see

Re: Page back color

2010-01-06 Thread ALEXEI BARBONI
All right Itś working now Thanks 2009/12/30 leslie web...@comcast.net Disregard my post. Mine appears to be working now, having shut down everything for the night, restarted, recompiled, reloaded, it's working I can see that both the stylesheet and the standard theme are in effect. It

GWT 2.0 Eclipse Plugin Not Working

2010-01-06 Thread Hethcox
Hi, I'm attempting to get my project working in GWT 2.0 under Eclipse 3.5 on Windows XP. The project was previously running under 1.7. Everything is working except jetty under Eclipse. (I separately compile and deploy the app to JBoss and it works fine). When I attempt to debug the app under

Re: Where is the Widget Gallery

2010-01-06 Thread Paul Robinson
http://code.google.com/webtoolkit/doc/latest/RefWidgetGallery.html ojm wrote: Hello, I'm BRAND SPANKIN' NEW to GWT. I've just installed Eclipse and GWT and am working through the Getting Started tutorial. In one of the steps, the tutorial says something like First, look at the Widget Gallery

Re: Shortcuts.java missing code

2010-01-06 Thread Trevor Skaife
The problem is your reading a getting started guide for GWT 1.6 but looking at GWT 2.0 examples. On Jan 5, 4:18 pm, Igor Ganapolsky eazy...@gmail.com wrote: I am following the GWT Getting Started guide at:http://code.google.com/webtoolkit/doc/1.6/gettingstarted.html#Install It states about

UiBinder, can't even get to first base

2010-01-06 Thread John
I thought I'd try to figure out UiBinder, but I'm lost. Played with various tutorials and examples and finally I have striped things down to what I believe is the bare minimum. It started as the standard Eclipse plugin generated application, and I have discarded virtually everything. What's

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
how can i work in hosted but not in compiled?? On Jan 6, 9:30 pm, Trevor Skaife tska...@gmail.com wrote: I went to your site and I see this error in Chrome Uncaught java.util.NoSuchElementException: forgot, if you compile using PRETTY you'd be able get a better understanding in your java code

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
? On Jan 6, 10:22 pm, ben fenster fenster@gmail.com wrote: how can i work in hosted but not in compiled?? On Jan 6, 9:30 pm, Trevor Skaife tska...@gmail.com wrote: I went to your site and I see this error in Chrome Uncaught java.util.NoSuchElementException:

Re: GWT 2.0 Eclipse Plugin Not Working

2010-01-06 Thread Keith Platfoot
Hi John, When you try to debug the app in Eclipse, what is the debug process command line? You can find this by right-clicking the java process in the Debug view in the Debug perspective, and selecting Properties. Also, there might be something useful in your workspace error log (Eclipse

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
The abc.jar does not include any client packages as far as I can tell. Since the above post I've changed this project so that a few files from abc.jar now implement IsSerializable so they can be passed to the client. As a result, abc is now a GWT module which I import into my GWT app. Most of

NativeEvent Get Type Issue

2010-01-06 Thread Salman Hemani
This is a good one. Totally confused. I am porting over an application from GWT 1.5 - 1.7 (I still have to upgrade to 2.0 but that will come at a later stage. The onEventPreview used to block the escape key. When I ported over to the NativePreviewHandler things ofcourse changed. Before I even get

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Open eSignForms
On Wed, Jan 6, 2010 at 1:10 PM, Rob Wood rob.a.w...@gmail.com wrote: The abc.jar does not include any client packages as far as I can tell. Since the above post I've changed this project so that a few files from abc.jar now implement IsSerializable so they can be passed to the client. As a

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
the problem is with the request builder can anyone tell me how can it run in hosted mode but not in complie mode please someone i get no error i found out with plain alerts On Jan 6, 10:59 pm, ben fenster fenster@gmail.com wrote: ? On Jan 6, 10:22 pm, ben

Re: UiBinder, can't even get to first base

2010-01-06 Thread Arthur Kalmenson
If you want to set the class name you need to use styleName or addStyleNames instead of class. Hope that helps. -- Arthur Kalmenson On Wed, Jan 6, 2010 at 3:04 PM, John nesre...@gmail.com wrote: I thought I'd try to figure out UiBinder, but I'm lost.  Played with various tutorials and

Re: Where is the Widget Gallery

2010-01-06 Thread Arthur Kalmenson
The Showcase is also useful: http://gwt.google.com/samples/Showcase/Showcase.html The GWT download also comes with a bunch of samples (including the showcase). -- Arthur Kalmenson On Wed, Jan 6, 2010 at 2:17 PM, Paul Robinson ukcue...@gmail.com wrote:

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
OK, I see I mispoke, causing some confusion. The classes that are passed to the client are not in the client package, but in abc's gwt.xml I use the source tag to tell GWT where to find them. These classes are passing through to the client just fine when I run in Hosted Mode. The problem is when

Re: GWT 2.0 w/ IntelliJ IDEA 7.0.5

2010-01-06 Thread Steve Sinai
Thanks. At the moment, upgrading IntelliJ isn't an option, so it looks like I get to hop around between two IDEs. Ugh! On Jan 6, 6:33 am, Matt Moriarity matt.moriar...@gmail.com wrote: If you really want decent IntelliJ GWT support, you should probably upgrade to IDEA 9.0, which added explicit

Re: how to use CssResource.obfuscationPrefix to have semi-obfuscated css class name

2010-01-06 Thread fvisticot
Hello, Did you try this (in your app module): set-configuration-property name=CssResource.style value=pretty / On 6 jan, 16:07, emerix rafa...@gmail.com wrote: Hi, I found on this pagehttp://code.google.com/intl/fr-FR/webtoolkit/doc/latest/DevGuideClien... that you can use the property

Re: JBoss Seam and GWT

2010-01-06 Thread Johnathan James
In case it helps anybody, there is a currently a bug in Seam which causes the Seam GWT Remoting example not to work. https://jira.jboss.org/jira/browse/JBSEAM-4506 If you are getting errors like 'Parameter 0 is of an unknown type: java.lang.String/2004016611', this is likely your issue. At

How to realize paging in combination with a FlexTable

2010-01-06 Thread ojay
Hi, I stuck on the problem how I can implement paging in my GWT-App. I want to show a list of users in a view, therefore I use the FlexTable. Now it can happen that there are hundreds of users which is a bit too much for the view, so I want to split it to 20 users on the screen and let the client

Re: GWT 2.0 Eclipse Plugin Not Working

2010-01-06 Thread Hethcox
Thanks Keith, Here's the debug command line: C:\Program Files\Java\jdk1.6.0_16\bin\javaw.exe - agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:4615 - Xmx512m -Dfile.encoding=Cp1252 -classpath C:\XCAFE\CDM550Frontend \src;C:\XCAFE\CDM550Frontend\war\WEB-INF\classes; [skip a bit,

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Open eSignForms
Without knowing your code, I cannot be sure, but somehow those classes are being referenced directly or as parameters something in your client classes. All references in the client code must be translatable, and most likely neither InputStream nor SimpleDateFormat are. So your client classes

Re: How to exclude server-side jar file from GWT compile / validation

2010-01-06 Thread Rob Wood
I've done some further analysis: I'm only getting errors for server side classes that have a reference to one of the classes implementing IsSerializable (either directly or through inheritance). GWT Compiler does not complain about the classes implementing IsSerializable (or their child classes)

Re: UiBinder, can't even get to first base

2010-01-06 Thread John
On Wed, Jan 6, 2010 at 5:26 PM, Arthur Kalmenson arthur.k...@gmail.com wrote: If you want to set the class name you need to use styleName or addStyleNames instead of class. In the older GWT versions, I know you set the stylename and used a conventional CSS style sheet with those names. I

Re: Working in development mode in GWT with php

2010-01-06 Thread Skeezix
also when I compile and deploy the compiled output (inside the war folder) to the server, it operates properly...hope someone can help me set this up properly so i can test/debug my app without recompiling and uploading it to the server On Jan 6, 4:59 pm, Skeezix skeezix6...@gmail.com wrote:

[ANN] Webbrowser game made with GWT 2.0: lacesfirst.com

2010-01-06 Thread Fushion
I started playing around with GWT since version 1.3 just fooling around with the code and trying out some various things. One thing I did was starting to develop a browser game, so I could see how things worked out in a real application instead of just mocking up some fancy gadgets. Well, one

GWT 2.0 Minor Bug Fix Release

2010-01-06 Thread jonathan.hollo...@gmail.com
Hi all, is there a minor bug fix release planned for GWT 2.x at all to address any of the outstanding issues to date, e.g. UiBinder internationlization etc.. Many thanks, Jon. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Problem with ClientBundle image resources in development mode.

2010-01-06 Thread Arkady
Hello, I am having the following problem with ClientBundle. Since I am using external web server (IIS), each time I add new image resources to the ClientBundle, I recompile using ant build target and copy all generated md5.cache.png files to the web server. After I added several image resources

Re: UiBinder, can't even get to first base

2010-01-06 Thread Arthur Kalmenson
That's correct, but only for regular HTML Elements, not GWT widgets. If you want to set CSS class names on GWT widgets using UI binder you need to use the methods I mentioned. -- Arthur Kalmenson On Wednesday, January 6, 2010, John nesre...@gmail.com wrote: On Wed, Jan 6, 2010 at 5:26 PM,

Compilation error

2010-01-06 Thread Raman
I just upgraded to GWT 2.0. But when I compile my source code with com.google.gwt.dev.Compiler, I get a NullPointerException as below. What am I doing wrong? [ERROR] Unexpected java.lang.NullPointerException at com.google.gwt.dev.javac.asm.ResolveTypeSignature.mergeTypeParamBound

Re: how to use CssResource.obfuscationPrefix to have semi-obfuscated css class name

2010-01-06 Thread Brendan Kenny
Yeah, I ran into the same problem. If the issue is just exposing the style names during development (and you're not looking for this particular solution for an additional reason), I would do as fvisticot suggests and then just remove that line from your module's xml file when you're ready for

Re: Webbrowser game made with GWT 2.0: lacesfirst.com

2010-01-06 Thread Nian Zhang
When shall i have a try to play the game, too emergy. -- 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

  1   2   >