Re: GWT Grid vs. SmartGWT grid

2010-03-12 Thread mariyan nenchev
Try scroll paging table from gwt incubator, i think it was updated to gwt 2.0. -- 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

Re: RPC and MapString, Object serialization problem

2010-03-12 Thread kriswpl
Thank you Paul for your reply. FYI - I use Map not to use DTO - I put all properties (Long, Date) to this Map. So I have another question --- is it any way to define what kind of objects (Date, Long, Double, etc.) can show in Map. I found information @gwt.typeArgs something. I mean - is it

Making GWT application crawlable by a search engine.

2010-03-12 Thread PhilBeaudoin
I want to use the #! token to make my GWT application crawlable, as described here: http://code.google.com/web/ajaxcrawling/ The GWT showcase app available online uses this, for example: http://gwt.google.com/samples/Showcase/Showcase.html#!CwRadioButton Will serve the following static webpage to

Re: RPC and MapString, Object serialization problem

2010-03-12 Thread Martin Trummer
I strongly recommend to use DTO's because then you have all the benefits of type-safety which is one of the most compelling reasons to use GWT. however, if you really don't care about that, you could use a HashMapString, String and simply call the toString() method on the serverside for every

Re: GWT Grid vs. SmartGWT grid

2010-03-12 Thread Nathan Wells
I would say you are correct on the disadvantages of SmartGwt. There are those (most notably the author(s)) who I know disagree with me. GWTers recognize the need for a more robust, data-backed table solution, and it's currently in the works, targeted for 2.1. Our company decided to go with

Re: RPC and MapString, Object serialization problem

2010-03-12 Thread Paul Robinson
You can create a class that wraps everything you might want to transport and use that class in the interface instead. One way is like this: public abstract class PropertyT implements Serializable { T value; } public class LongProperty extends PropertyLong { } public

GWT Dashboard Development

2010-03-12 Thread Tapas Adhikary
Hi All, I have a requirement of developing a Dash board using GWT. The followings are the Dashboard should have , - It should accommodate maximum 4 widgets at any point of time . - Each widget should have a Title bar ( which is uniform across all the widgets). - Below title bar ,

Re: Debugging GWT 2.0 is pain

2010-03-12 Thread Eric
On FireFox, you could install the GreaseMonkey extension and write a quick script that looks for the gwt.codesvr parameter on the current page and adds the same parameter to all links. I don't know if there is something similar in other browsers.

شاهد دائرة القراراتعلى صفح ة Google الرئيسية

2010-03-12 Thread www . abuawad . com
تم إرسال أداة Google التالية من صديقك/صديقتك www.abuawad@gmail.com. شاهد دائرة القرارات على صفحة Google الرئيسية.» screenshot -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

web.xml

2010-03-12 Thread tom
Hi -- What class can I use to access the web.xml (properties such) from my GWT module? Thanks! -- 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

Staying in Development Mode after a form submit

2010-03-12 Thread Joe S
We just switched to GWT 2.0 and are using Development Mode. Our application is hosted by WebLogic, so we are not using the AppEngine in development mode. If we're on a page that is hosting a gwt widget, we append the gwt.codesvr=127.0.0.1:9997 to the url and refresh the page and we're in

The import java.rmi cannot be resolved

2010-03-12 Thread Wolfgang Pichler
Hi all, i am playing around with gwt to get a gwt client - gwt-rpc - gwt server - rmi - rmi server scenario working. And i have the simple problem that it cannot resolv java.rmi (which is in rt.jar - which is definitly included) I am running gwt 2.0.x - on a 64bit linux machine under eclipse -

can / how do i inherit google-collections?

2010-03-12 Thread petko
i want to be able to use : Lists.newArrayList() for example in my client gwt code. but get this error: 00:00:42.573 [ERROR] Line 97: No source code is available for type com.google.common.collect.Lists; did you forget to inherit a required module? the google-collections jar is specified the same

Re: Two independent events that can be triggered at the same time -- how to control conflict?

2010-03-12 Thread selliottjr928
VII Sent from my Verizon Wireless BlackBerry -Original Message- From: Rob Tanner caspersg...@gmail.com Date: Thu, 11 Mar 2010 13:47:24 To: Google Web Toolkitgoogle-web-toolkit@googlegroups.com Subject: Two independent events that can be triggered at the same time -- how to

Re: Chrome 4.x Must Empty Cache after first visit to a GWT site

2010-03-12 Thread Konstantin Solomatov
I had the same issue. Have you found any workarounds? On Jan 22, 4:50 pm, gcstang gcst...@gmail.com wrote: Chrome 4.0.249.64 GWT 2 SmartGWT 2 I have my war deployed on a Linux Server served by Tomcat via Apache the first time I bring up the site in my Chrome browser it works great, and

Re: GWT 2.0 + Hibernate + Gilead

2010-03-12 Thread Olivier
Hi, thanks for your answer Giuseppe, I tried Dozer when I did not succeed in Gilead. But now I resolved the problem, I prefer use Gilead which allows me to use an existing code without duplicating data. If my model changes, I will not have to modify the DTO according to the modifications : only

Generated widget markup

2010-03-12 Thread mmoossen
Dear all! i was surprised, even disappointed, when i realized how GWT (ab)uses html tables. For instance the vertical panel and the tree widget ARE html tables. why it is so?? should not it be much better just to use a list of DIVs (or even a UL) for the vertical panel and nested ULs for the

Re: Why and How does GWT extract these subset of the core Java class libraries ?

2010-03-12 Thread Olostan
Result of GWT compiling is JavaScript code. So to convert your Java code to JavaScript GWT need those classes if you use them. That was 'why'. How? I am not sure, but as it is 'emulation' library, these classes are not extracted, but or hard-coded in JavaScript directly or wrote in Java but

RPC + SerializationException + Spring Security AccessDeniedException

2010-03-12 Thread d95sld95
Environment: GWT 2, Spring + Spring Security 3, gwtrpc-spring 1.01 I am trying to implement authentication for my GWT application using Spring Security. But when I call the RPC.invokeAndEncodeResponse method it throws an SerializationException. Looking at the stack trace I see that

How to show special characters like æ using GWT int ernationalization and UIBinder

2010-03-12 Thread kahawala
Hi, I have a simple GWT application that uses both Messages and Constant interfaces to do the internationalization. I want to show danish special characters like æ in my danish version. 1.)Bellow is my Messages version. Interface - package

Re: Google Plugin for Eclipse 1.3 Preview is now available

2010-03-12 Thread andreas
Hi Keith, we are happy to test the preview version. We are using Maven and the gwt-maven-project layout for our projects. We loved the dependency management and also clear code structure coming along with Maven but ran in the same problem mentioned a lot before: we could not get Google Eclipse

Strange Null Pointer Exception

2010-03-12 Thread Jolam
when i invoking a rpc service with a onclick() method, I encounter a Exception: Mar 12, 2010 11:45:40 AM com.google.appengine.tools.development.ApiProxyLocalImpl log SEVERE: [126839434065] javax.servlet.ServletContext log: Exception while dispatching incoming RPC call

Re: Making GWT application crawlable by a search engine.

2010-03-12 Thread Thomas Broyer
On Mar 12, 10:13 am, PhilBeaudoin philippe.beaud...@gmail.com wrote: I want to use the #! token to make my GWT application crawlable, as described here:http://code.google.com/web/ajaxcrawling/ The GWT showcase app available online uses this, for

Re: The import java.rmi cannot be resolved

2010-03-12 Thread rudolf michael
I dont think that you can use java.rmi, if i am not mistaken the only package you can use from the java sdk is java.util If rmi was supported then why in a hell you need RPCi would love to have this option within my .cleint.*.java classes this way i will be able to lookup all my EJBs using rmi

Re: Two independent events that can be triggered at the same time -- how to control conflict?

2010-03-12 Thread Thomas Broyer
On Mar 11, 10:47 pm, Rob Tanner caspersg...@gmail.com wrote: I'm writing a self-service password reset program and I have two independent events that can both be triggered at the same time, but they conflict.  Folks just simply changing their password would enter their ID and tab to the

Re: Keeping Dialog Boxes Centered after Window Events

2010-03-12 Thread Patrick Tucker
Thanks for your input. My problem still is not solved. Adding the recommended code forces the glass to be removed. So, I am now able to see that the DialogBox can not be moved by the normal Caption mouse handlers. Also, my Window handlers still do not work. On the + side, the glass panel is

Re: GWT 2.0.2 and Firefox

2010-03-12 Thread Ronan
The problem seems to be in the Firefox plug-ins I had installed. I did this to solve the problem: - uninstalled Firefox - restarted Windows (not sure this is mandatory, but maybe) - Re-installed Firefox 3.6 without any plug-in Then it worked. Hope this will help someone. Regards Ronan --

Re: How to show special characters like æ using GWT internationalization and UIBinder

2010-03-12 Thread Thomas Broyer
On Mar 12, 2:09 pm, kahawala vkahaw...@gmail.com wrote: Hi, I have a simple GWT application that uses both Messages and Constant interfaces to do the internationalization. I want to show danish special characters like æ in my danish version. To make it simple, *all* of your files should be

Re: IE8 showing blank page

2010-03-12 Thread Thomas Broyer
On Mar 11, 10:17 pm, Thad thad.humphr...@gmail.com wrote: You might have a DOM problem that is hiding the DIV you wish to see. I'd recommend you download and install the IE Developer Toolbar from Microsoft.  It's like Firebug, so you can compare your DOM on Firefox with that on IE.  I was

java.io.IOException: error=13, Permission denied

2010-03-12 Thread Thomas Holmes
I have a brand new screaming laptop where I installed OpenSuse 11.2 64- bit, MySQL 64-bit, Java JDK, MyEclipseIDE, and the Eclipse GWT Plugin. I should say that I also had the old GWT 1.7.1 on my system as well. So after all this work, I went to create a new GWT Application Project, and then I

gwt Popup is not centered

2010-03-12 Thread mariyan nenchev
Hi, I use gwt popup to show some messages, but it is not displayed in the center of the display event if i call popup.center(). Actually it is not centered only the first time, if i close it and open it again every thing is ok, but not the first time. How to fix that? Regards. -- You received

Re: gwt Popup is not centered

2010-03-12 Thread rudolf michael
try to set the pixel size of the popup before centering it. popup.setPixelSize(width, height); On Fri, Mar 12, 2010 at 5:04 PM, mariyan nenchev nenchev.mari...@gmail.comwrote: Hi, I use gwt popup to show some messages, but it is not displayed in the center of the display event if i call

Re: beta eclipse plugin - running in noserver mode with tomcat - having troubles

2010-03-12 Thread bkbonner
Hi, Keith. Yes, i was wondering if that was the case. I hope that the plugin just includes the -noserver configuration as part of it. The UIBinder error makes it seem like the xml code is not being recognized by OOPHM when it's trying to run. Thanks for getting back to me. I hope someone can

Re: gwt Popup is not centered

2010-03-12 Thread mariyan nenchev
Well i am setting pixel size on the Panel inside the popup -- 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

Re: eclipse plugin - user define composites

2010-03-12 Thread Jason Parekh
Hi Brian, That definitely sounds like a bug. What is the package name, class name, and inheritance hierarchy for these custom composites that don't show up? Would you be able to send your project or a smaller project showing the bug? Also, it'll be better tracking this bug in the issue

Re: Generated widget markup

2010-03-12 Thread Chris Lercher
I think, the new GWT 2.0 Layout Panel address pretty much that - they're designed for standards mode, and you can make do without Tables (VerticalPanel etc). You can still use them for data tables, in which case they're semantically correct. On Mar 12, 2:19 pm, mmoossen mmoos...@gmail.com wrote:

Safari 4.0.5 GWT 1.x?

2010-03-12 Thread Geoffrey Wiseman
Anyone tried Safari 4.0.5 with GWT 1.x Hosted Mode? The latest comment on the bug implies the issue hasn't been resolved, but thought I'd check to see if there were more data points with people here: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220 -- You received this message

ImageResource bug in IE, getURL() does not work

2010-03-12 Thread mufflon
Hi, Im facing the problem that if I call the getURL() method from my ImageResources in the Internet Explorer I always get the URL to the complete bundle with all icons. It works fine in Firefox. I already found a workaround if I want to embedd the image in plain html like this:

Re: java.io.IOException: error=13, Permission denied

2010-03-12 Thread Chris Lercher
Are you sure, that Eclipse is running on the Sun JVM? (About Eclipse - Installation Details - Configuration) There are lots of problems with Eclipse, when run with GCJ. I don't know, if that's the solution, but I'd check this first. On Mar 12, 3:49 pm, Thomas Holmes thomas.j.hol...@gmail.com

Re: Generated widget markup

2010-03-12 Thread Joel Webber
First of all, there have always been widgets that have used tables, and those that don't. When we started designing them, tables were pretty much the only way to get sane layout behavior, especially before anything like standards mode was widely supported. But it's always been possible to avoid

Re: java.io.IOException: error=13, Permission denied

2010-03-12 Thread Thomas Holmes
Ok, I just fixed the issue. I have set MyEclipseIDE (or Eclipse) to run with my other up-to-date JVM JDK 1.6._u18 But even though that was my configured JVM for java application, Eclipse, as you suggested was still running against it's own local JVM. Ultimately, I just drilled down to the

Re: Making GWT application crawlable by a search engine.

2010-03-12 Thread PhilBeaudoin
Thanks Chris. I'll continue the discussion over there, if needed. On Mar 12, 7:36 am, Chris Lercher cl_for_mail...@gmx.net wrote: Hi, please see my answer to your question on stackoverflow.com:http://stackoverflow.com/questions/2430244/making-gwt-application-cra... Chris On Mar 12, 10:13 

Re: Making GWT application crawlable by a search engine.

2010-03-12 Thread PhilBeaudoin
It seems that the CrawlableHyperlink will not make it into GWT, to quote Kathrin from that code review: after a lengthy discussion with Joel, we decided to get rid of the CrawlableHyperlink widget. The issue is that it doesn't add enough useful functionality, because the app writer still needs

Re: gwt Popup is not centered

2010-03-12 Thread Jim Douglas
Have you reviewed the sample -- with detailed comments -- near the top of the javadoc page? http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/PopupPanel.html On Mar 12, 7:13 am, mariyan nenchev nenchev.mari...@gmail.com wrote: Well i am setting pixel size on

Re: Debugging GWT 2.0 is pain

2010-03-12 Thread Trevis
I find hat being able to debug in firefox with firebug and have gwt breakpoints to be vastly surperior to old school hosted mode. I guess I haven't had the frustration that you have because I just leave the browser minimized between debug sessions and refresh when necessary. On Mar 11, 10:40 am,

Re: Google Plugin for Eclipse 1.3 Preview is now available

2010-03-12 Thread Keith Platfoot
Hi Andreas, Hm, not sure why you're seeing that error. Let me ask a few questions to see if we can get to the bottom of this. 1. You set the WAR directory to 'src/main/webapp' via the Google Web Application project properties page, right? Did you also uncheck the box below that says 'Launch

Re: beta eclipse plugin - running in noserver mode with tomcat - having troubles

2010-03-12 Thread bkbonner
I suspect this is a classloader thing, but I'm not sure how to resolve it. when I run WTP tomcat server and look at the WEB-INF/lib directory I have: gwt-servlet-2.0.3.jar gwt-servlet.jar gwt-soyc-vis-2.0.3.jar gwt-user-2.0.3.jar Do all of these need to be there in the WAR? I thought only a

Re: How to show special characters like æ using GWT internationalization and UIBinder

2010-03-12 Thread venura kahawala
Hi Thomas Thanks for the reply. But i tried the way that you have mentioned and i couldn't get the expected results. All my files are encoded with utf-8. Any comment is appreciated. Thanks, Kahawala On Fri, Mar 12, 2010 at 8:14 PM, Thomas Broyer t.bro...@gmail.com wrote: On Mar 12, 2:09

Re: Bug in GWT eclipse plugin?

2010-03-12 Thread Rajeev Dayal
Hi Krishna, Glad you were able to get around this issue. It looks like there might be some sort of escaping issue on our side as well. We'll take a look at the bug that you mentioned. Rajeev On Mon, Mar 8, 2010 at 7:33 AM, Krishna shrikrishna.sh...@gmail.com wrote: OK, I traced this down to

Re: Generated widget markup

2010-03-12 Thread Chris Lercher
On Mar 12, 5:33 pm, Joel Webber j...@google.com wrote: These DOM structures are never serialized into static content, for example. And it's also a fair question to ask what the semantics of a stack of divs are, as opposed to a table -- they're both semantically meaningless. I'm still a little

Re: beta eclipse plugin - running in noserver mode with tomcat - having troubles

2010-03-12 Thread bkbonner
I got the other JARs removed. I changed the scope to provided and they're gone, but the results are the same. :( If you have any suggestions, they'd be appreciated. I'll still plug away. If I pull out the UI Binder stuff it works fine. I'll look at pulling another working example in. Brian

Adding a Second script tag to the HTML File?

2010-03-12 Thread Russ
Hi, Can I add a second script language=JavaScript src=myScript.js tag to the existing script type=text/javascript language=javascript src=nocache.js tag in the HTML file? In otherwords, can I have both in there? Thank you, -Russ -- You received this message because you are subscribed to the

Re: Adding a Second script tag to the HTML File?

2010-03-12 Thread Christian Goudreau
Yes, but don't forget closure. /script On Fri, Mar 12, 2010 at 2:00 PM, Russ r...@epcinternet.com wrote: Hi, Can I add a second script language=JavaScript src=myScript.js tag to the existing script type=text/javascript language=javascript src=nocache.js tag in the HTML file? In otherwords,

Re: eclipse plugin - user define composites

2010-03-12 Thread bkbonner
I ended up restarting eclipse and it went away. I will try to recreate it. com.test.gwt.client.Balloon.java was a composite that used GwtCanvas from the incubator. I'll try to work something up. Brian On Mar 12, 10:13 am, Jason Parekh jasonpar...@gmail.com wrote: Hi Brian, That definitely

Re: GWT Grid vs. SmartGWT grid

2010-03-12 Thread ckendrick
And here are the authors to disagree :) 1) Yes, we make intentional departures from the GWT way, such as.. 2) SmartGWT has better cross-browser consistency than GWT itself. Why? Because GWT relies on native browser behavior and CSS for layout, and this is where all the quirks come from. We do

Re: beta eclipse plugin - running in noserver mode with tomcat - having troubles

2010-03-12 Thread bkbonner
Keith, I was working to put together a sample of what I was seeing and I think I figured out what was wrong. the ui.xml files don't get copied over by default if they're in the src/main/java directories. they have to be in src/main/resources, or the maven configuration has to be changed to make

Re: Generated widget markup

2010-03-12 Thread mmoossen
thanks chris for pointing this out. looks interesting, but not really what i am looking for (actually a simple and nice tree) Michael On Mar 12, 4:32 pm, Chris Lercher cl_for_mail...@gmx.net wrote: I think, the new GWT 2.0 Layout Panel address pretty much that - they're designed for standards

New module does not get called

2010-03-12 Thread Vik
Hie I created a new gwt module and an entry point class in that. The created component in entry point class is finally embedded to a web page. But when i run the web page this entry point class does not get called. However, if I move the entry point class back to the default gwt module created

Re: Making GWT application crawlable by a search engine.

2010-03-12 Thread PhilBeaudoin
It almost work... The only problem left is that the development mode will serve the default html file right away if it is present, so the filters defined in web.xml will not be called. This happens even with the showcase application that you linked. Is there any way to force the web.xml to go

Re: Generated widget markup

2010-03-12 Thread mmoossen
ok, thanks for the answer, and sorry if i was being rude. i am also developer and i understand your points, but until now i have been able to create perfect behaving trees with nested ULs and i would like to continue doing that unless there is really a good reason for using nested tables instead.

Re: GWT Grid vs. SmartGWT grid

2010-03-12 Thread Open eSignForms
And if you'd like to use GWT but don't care about GWT programming per se, check out Vaadin.com. It's a servlet based solution that uses GWT for the client portion. They have tables/grids that work well with javabeans without DTOs or RPC programming (except for minor attribute-value passing via

Re: newbie question, problem adding jar library

2010-03-12 Thread khalid
hi guys it took much time for this post to be approved by moderators anyway I have solved the problem yesterday by disabling google app engine ^_^ - chris:Thank you I am going to need this before deploying my server side code Victor: exactly , I work on netbeans always

Re: GWT 2.0 + Hibernate + Gilead

2010-03-12 Thread Giuseppe La Scaleia
Olivier ha scritto: Hi, thanks for your answer Giuseppe, I tried Dozer when I did not succeed in Gilead. But now I resolved the problem, I prefer use Gilead which allows me to use an existing code without duplicating data. If my model changes, I will not have to modify the DTO according to the

Re: beta eclipse plugin - running in noserver mode with tomcat - having troubles

2010-03-12 Thread bkbonner
Keith, I included the sample here: http://code.google.com/p/google-web-toolkit/issues/detail?id=4745 Brian On Mar 12, 2:48 pm, bkbonner brian.bon...@paraware.com wrote: Keith, I was working to put together a sample of what I was seeing and I think I figured out what was wrong.  the ui.xml

Re: noserver option, maven, and real-time java code compilation

2010-03-12 Thread Rajeev Dayal
If you make a change to your CLIENT-SIDE Java code, it should be reflected in the browser, even in -noserver mode. What is the URL that you're entering into your browser? Also, when running development mode, do you have your java source folder on the runtime classpath? The client-side .class

New GWT 2.0 tutorials

2010-03-12 Thread Chad Lung
For those that are interested I've posted two easy to follow tutorials based on GWT 2.0: Tutorial: Learning GWT 2.0 and RPC: http://giantflyingsaucer.com/blog/?p=1017 Tutorial: Using UiBinder in Google Web Toolkit 2.0 (GWT): http://giantflyingsaucer.com/blog/?p=978 Any feedback can be left on

Are VerticalPanel and HorizontalPanel (informally) deprecated in GWT 2.0?

2010-03-12 Thread Marty Hall
Now that we have LayoutPanel and its derivatives, are we supposed to eschew VerticalPanel and HorizontalPanel because they use HTML tables behind the scenes? If so, what is the right approach to use now? I suppose I can mimic HorizontalPanel with a FlowPanel and inline display style, and mimic

Re: Making GWT application crawlable by a search engine.

2010-03-12 Thread PhilBeaudoin
Great! Everything seems to work! (Although there seems to be some bugs in that updated Showcase samples. Should I report them somehow?) My only problem now... I can't run HTML Unit on App Engine, which is where I host my app. :( Fortunately, they seem to be working on it:

Re: Chrome 4.x Must Empty Cache after first visit to a GWT site

2010-03-12 Thread gcstang
I didn't find any work arounds however I did notice that chrome 3.x and the new 4.1.x beta seems to work correctly. On Mar 12, 3:46 am, Konstantin Solomatov konstantin.soloma...@gmail.com wrote: I had the same issue. Have you found any workarounds? On Jan 22, 4:50 pm, gcstang gcst...@gmail.com

Re: GWT 2.0 + Hibernate + Gilead

2010-03-12 Thread andreas
I have used Gilead, too. First I was very happy with it as it saved me a lot of time. But when my application grew larger, I also experienced that in some situations it's reducing performance. Another reason to not use Gilead was that I started to set properties of my mapped entities to null which

Re: development mode with tomcat

2010-03-12 Thread elsurdo
've recently started working with GWT and i've got a problem. I need to create a web application using gwt and j2ee, i'm using ecplipse with gwt pligin,AppsEngine and tomcat to run muy servlet. But when i run my application it runs on jetty server. I don't know how to run it on Tomcat on

Beware of compatibility mode on IE8!

2010-03-12 Thread Paul Stockley
I have been trying to track down some strange IE8 bugs like the screen going blank and history issues (I am using LayoutPanels in standards mode). The problem only occurred when I accessed my site through our firewall. If I ran it locally or directly from the server it worked fine. The thing that

Re: GWT 2.0 + Hibernate + Gilead

2010-03-12 Thread Jeff Larsen
Instead of setting them to null, you could declare them as transient. That would cause them to not be transported over the wire. On Mar 12, 4:57 pm, andreas andreas.kn...@nikem.de wrote: I have used Gilead, too. First I was very happy with it as it saved me a lot of time. But when my

Re: Debugging GWT 2.0 is pain

2010-03-12 Thread JazzyJava
Thanks. GreaseMonkey could prove to be the solution here, although I have to experiment to see if GreaseMonkey will correctly pick up dynamically generated DOM (e.g. links generated as part of a GWT module). Wouldn't be surprised if such script has already been written On Mar 12, 6:34 am,

Re: Debugging GWT 2.0 is pain

2010-03-12 Thread JazzyJava
I fully agree, running a GWT app in native browser and being able to debug it is the way to go, hosted mode is history. However, for the time being, it looks like Google didn't really think their browser plug-in through for accomodate apps which are gradually introducing GWT by incorporating GWT

Re: How to show special characters like æ using GWT internationalization and UIBinder

2010-03-12 Thread Sripathi Krishnan
if i use static special characters in the UiBinder it get rendered correctly. So i think this happens when loading dynamic data. By dynamic data I assume you mean a RPC call has the data. How are you storing the data? If you are using databases, make sure that you are using the right encoding

Re: The import java.rmi cannot be resolved

2010-03-12 Thread Sripathi Krishnan
You CAN USE rmi, just that you can't use it with your client code. gwt client - gwt-rpc - gwt server - rmi - rmi server The above chain is definitely possible. I think you have inadvertently tried to connect gwt client to RMI server, which is not possible. Move your RMI related code out of your

Re: RPC + SerializationException + Spring Security AccessDeniedException

2010-03-12 Thread Sripathi Krishnan
GWT does not serialize RuntimeExceptions. If it did, it would have to generate javascript equivalent of several useless Exception classes. If you want the exception to propagate to the client, you have to do the following - a) The Exception should be Serializable b) It should be in the client

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

2010-03-12 Thread codesite-noreply
Comment by johan.rydberg: Is there really a need for bulk-like renders? Isn't it better to just render the rows visible on the screen? For more information: http://code.google.com/p/google-web-toolkit/wiki/DataBackedWidgetsDesign --

[gwt-contrib] Generated widget markup

2010-03-12 Thread mmoossen
Dear all! i was surprised, even disappointed, when i realized how GWT (ab)uses html tables. For instance the vertical panel and the tree widget ARE html tables. why it is so?? should not it be much better just to use a list of DIVs (or even a UL) for the vertical panel and nested ULs for the

Re: [gwt-contrib] Re: One-line fix to SelectionScript's fallback logic for

2010-03-12 Thread Lex Spoon
2010/3/11 Miguel Méndez mmen...@google.com +1 to Ray's question. I know that you were simply doing a fix Lex, but we need to think about how we test these features. I agree. I'll work out a test. -Lex -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7707 committed - Cleaned up tables on firefox; added split handle styles for later use.

2010-03-12 Thread codesite-noreply
Revision: 7707 Author: j...@google.com Date: Thu Mar 11 10:09:28 2010 Log: Cleaned up tables on firefox; added split handle styles for later use. http://code.google.com/p/google-web-toolkit/source/detail?r=7707 Added: /trunk/bikeshed/war/hsplitter-grip.png

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

2010-03-12 Thread codesite-noreply
Comment by j...@google.com: @johan: The short answer is yes. Here's the reason: What's visible on the screen can easily be ~20x50 cells in a table, and that can be surprisingly slow to render using individual calls to td.setInnerHTML(), and even worse if you're using entire widgets and the

[gwt-contrib] [google-web-toolkit] r7708 committed - Allow skipping a test case in development mode or production mode....

2010-03-12 Thread codesite-noreply
Revision: 7708 Author: sp...@google.com Date: Thu Mar 11 10:58:55 2010 Log: Allow skipping a test case in development mode or production mode. http://gwt-code-reviews.appspot.com/171801 Review by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=7708 Modified:

[gwt-contrib] [google-web-toolkit] r7709 committed - reverting r5487 that was just for diagnostics...

2010-03-12 Thread codesite-noreply
Revision: 7709 Author: amitman...@google.com Date: Thu Mar 11 11:04:12 2010 Log: reverting r5487 that was just for diagnostics Patch by: amitmanjhi Review by: scottb, jat http://code.google.com/p/google-web-toolkit/source/detail?r=7709 Modified:

[gwt-contrib] [google-web-toolkit] r7710 committed - Implement actions/history in the browser

2010-03-12 Thread codesite-noreply
Revision: 7710 Author: r...@google.com Date: Thu Mar 11 11:11:10 2010 Log: Implement actions/history in the browser http://code.google.com/p/google-web-toolkit/source/detail?r=7710 Modified: /trunk/bikeshed/src/com/google/gwt/bikeshed/sample/stocks/client/BuySellPopup.java

[gwt-contrib] [google-web-toolkit] r7711 committed - Fixes GenerateJavaScriptAST to not produce duplicate native polymorphi...

2010-03-12 Thread codesite-noreply
Revision: 7711 Author: sco...@google.com Date: Thu Mar 11 11:44:05 2010 Log: Fixes GenerateJavaScriptAST to not produce duplicate native polymorphic methods. http://gwt-code-reviews.appspot.com/177801 Review by: spoon http://code.google.com/p/google-web-toolkit/source/detail?r=7711

[gwt-contrib] [google-web-toolkit] r7712 committed - Implements JsDate to wrap the native Java Date class....

2010-03-12 Thread codesite-noreply
Revision: 7712 Author: sco...@google.com Date: Thu Mar 11 12:28:06 2010 Log: Implements JsDate to wrap the native Java Date class. http://gwt-code-reviews.appspot.com/182801 Review by: rjrjr http://code.google.com/p/google-web-toolkit/source/detail?r=7712 Added:

[gwt-contrib] [google-web-toolkit] r7713 committed - Reimplement java.util.Date in Java, using the new JsDate....

2010-03-12 Thread codesite-noreply
Revision: 7713 Author: sco...@google.com Date: Thu Mar 11 17:04:12 2010 Log: Reimplement java.util.Date in Java, using the new JsDate. http://gwt-code-reviews.appspot.com/181801 Review by: rice, jat http://code.google.com/p/google-web-toolkit/source/detail?r=7713 Modified:

[gwt-contrib] [google-web-toolkit] r7715 committed - Changes for crawling: client-side changes to Showcase sample...

2010-03-12 Thread codesite-noreply
Revision: 7715 Author: kpro...@google.com Date: Fri Mar 12 03:15:29 2010 Log: Changes for crawling: client-side changes to Showcase sample Review at http://gwt-code-reviews.appspot.com/161801 http://code.google.com/p/google-web-toolkit/source/detail?r=7715 Modified:

[gwt-contrib] [google-web-toolkit] r7716 committed - Adding missing package descriptions to various packages....

2010-03-12 Thread codesite-noreply
Revision: 7716 Author: jlaba...@google.com Date: Fri Mar 12 05:06:15 2010 Log: Adding missing package descriptions to various packages. http://gwt-code-reviews.appspot.com/176801 http://code.google.com/p/google-web-toolkit/source/detail?r=7716 Added:

[gwt-contrib] [google-web-toolkit] r7717 committed - Fix bugs in stock sample app

2010-03-12 Thread codesite-noreply
Revision: 7717 Author: r...@google.com Date: Fri Mar 12 06:22:00 2010 Log: Fix bugs in stock sample app http://code.google.com/p/google-web-toolkit/source/detail?r=7717 Modified: /trunk/bikeshed/src/com/google/gwt/bikeshed/sample/stocks/client/BuySellPopup.java

[gwt-contrib] [google-web-toolkit] r7718 committed - Adding list of top players to the game.

2010-03-12 Thread codesite-noreply
Revision: 7718 Author: gwt.mirror...@gmail.com Date: Fri Mar 12 11:14:43 2010 Log: Adding list of top players to the game. http://code.google.com/p/google-web-toolkit/source/detail?r=7718 Added: /trunk/bikeshed/src/com/google/gwt/bikeshed/sample/stocks/client/PlayerScoresWidget.java

[gwt-contrib] [google-web-toolkit] r7719 committed - Adding app engine files to bikeshed.

2010-03-12 Thread codesite-noreply
Revision: 7719 Author: jlaba...@google.com Date: Fri Mar 12 07:26:16 2010 Log: Adding app engine files to bikeshed. http://code.google.com/p/google-web-toolkit/source/detail?r=7719 Added: /trunk/bikeshed/war/WEB-INF/appengine-web.xml /trunk/bikeshed/war/WEB-INF/lib

[gwt-contrib] [google-web-toolkit] r7720 committed - Fixing handling of nested switch statements in gflow....

2010-03-12 Thread codesite-noreply
Revision: 7720 Author: gwt.mirror...@gmail.com Date: Fri Mar 12 08:11:14 2010 Log: Fixing handling of nested switch statements in gflow. Added couple of toString methods which helped debugging the issue. Review by: sp...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=7720

[gwt-contrib] Add quick-and-dirty wireshark packet dissector for GWT code server

2010-03-12 Thread jat
Reviewers: scottb, Description: Add quick-and-dirty wireshark packet dissector for GWT code server protocol. Patch by: jat Review by: scottb Please review this at http://gwt-code-reviews.appspot.com/191801 Affected files: A plugins/wireshark/Makefile A plugins/wireshark/README.txt A

[gwt-contrib] Start of sending an update request. Checking in mid-way to allow some

2010-03-12 Thread rjrjr
Reviewers: amitmanjhi, Description: Start of sending an update request. Checking in mid-way to allow some renaming work before Amit finishes it. Review by: amitman...@google.com Please review this at http://gwt-code-reviews.appspot.com/192801 Affected files: M

[gwt-contrib] Re: Start of sending an update request. Checking in mid-way to allow some

2010-03-12 Thread amitmanjhi
LGTM http://gwt-code-reviews.appspot.com/192801 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2010-03-12 Thread codesite-noreply
Comment by thobias.karlsson: Has anybody solved the issue with style dependent names? This is what I want to do: HoverLabel.java {{{ public class HoverLabel extends Composite { private static HoverLabelUiBinder uiBinder = GWT.create(HoverLabelUiBinder.class); interface

[gwt-contrib] [google-web-toolkit] r7721 committed - Start of sending an update request. Checking in mid-way to allow some...

2010-03-12 Thread codesite-noreply
Revision: 7721 Author: rj...@google.com Date: Fri Mar 12 09:35:24 2010 Log: Start of sending an update request. Checking in mid-way to allow some renaming work before Amit finishes it. Review at http://gwt-code-reviews.appspot.com/192801 Review by: amitman...@google.com

  1   2   >