Re: Design pattern for db driven GWT application

2009-05-11 Thread Neo
Thank you Genov, Jim, gregor for all the useful suggestions. Gregor you are right. My problem is the asynchronous nature of AJAX server calls but as you said that we all have to live with it. Looks like I will go with MVP as suggested by Genov. On May 10, 8:23 pm, gregor

Re: RPC vs non RPC methods order of execution

2009-05-11 Thread sim123
Thanks for your reply, actually I can not change the login servlet method, that is out of my control. I still can not get these two things here, one is why my gwt application is trying to call UserService without any mapping for it in web.xml, I could see the logs like [WARN] 404 - POST

Re: GWT best Practices - JS Library Wrappers Overlay Types

2009-05-11 Thread Bobby
I'm very close, i've just compiled a GData JS example via the GData GWT library - which retrieves a Calendar feed - and it worked. Here are some of the implementation choices i've made so far: - map all namespaces to be under com.google.gwt.gdata.client.* - map all Object parameters to

Re: Stockwatcher GAE tutorial

2009-05-11 Thread Randinn
Thank you for the reply, that explains some things. On May 5, 2:25 pm, Jason Smart jasondsm...@gmail.com wrote: I've found several problems with the tutorial athttp://code.google.com/webtoolkit/tutorials/1.6/appengine.html I have posted solutions for them

Re: configure hosted jetty

2009-05-11 Thread Salvador Diaz
see no apparent errors, even with a log level of DEBUG. Well, if DEBUG level fails to report something meaningful, there's still SPAM and ALL ;) I don't know what the problem could be though Good luck Salvador On May 10, 7:38 pm, JtheG jwilsonspri...@gmail.com wrote: I've added the

Re: Return Problem

2009-05-11 Thread Salvador Diaz
Any other way around? Set lazy=false to all the fields of your persistent objects. Not very practical to say the least... Cheers, Salvador On May 11, 5:45 am, Rohit Vadera rohitvad...@gmail.com wrote: Any other way around? On May 8, 8:36 pm, Jim jim.p...@gmail.com wrote: You

Re: GWT 1.6 hosted mode quits immediately on mac osx using the -war parameter

2009-05-11 Thread Salvador Diaz
Well, you shuld check that your war argument is correct: maybe the folder isn't where it should be, remember that this argument is relative to the working directory of your launcher. I don't have any problems setting the war parameter on OS X. Take a look at this post (I set the war parameter to

Re: GWT + Applet

2009-05-11 Thread mars1412
first you should try to get your applet run in a plain html-file if this works: * pay attention to this: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/5e01d0b31b58083a?hl=en * and if you still think, it doesn't work: provide more details, about what's happening BTW:

Re: Return Problem

2009-05-11 Thread Rohit Vadera
Hi, From where can i download the .jar used for Gilead adapter-core.jar hibernate-util.jar if you use core Hibernate (SessionFactory) hibernate-jpa-util.jar if you use Hibernate encapsulation of JPA (EntityManagerFactory) adapter4gwt.jar Also is there any link where Gilead(hibernate4GWT)

Re: Return Problem

2009-05-11 Thread Rohit Vadera
Here i got the jars https://sourceforge.net/project/showfiles.php?group_id=239931 On May 11, 2:04 pm, Rohit Vadera rohitvad...@gmail.com wrote: Hi, From where can i download the .jar used for Gilead adapter-core.jar hibernate-util.jar if you use core Hibernate (SessionFactory)

Re: Return Problem

2009-05-11 Thread Rohit Vadera
Will the following work for GWT1.6? inherits name='net.sf.gilead.Adapter4Gwt15'/ On May 11, 2:10 pm, Rohit Vadera rohitvad...@gmail.com wrote: Here i got the jars https://sourceforge.net/project/showfiles.php?group_id=239931 On May 11, 2:04 pm, Rohit Vadera rohitvad...@gmail.com wrote:

Re: GWT, hibernate4gwt and HibernateTemplate

2009-05-11 Thread Rohit Vadera
Hi Paul, Any clues how you configured GWT with Gilead lib to support hibernate lazy loading. I am going through all examples but seems they use Spring. Simple examples are always good. :) thanks On May 9, 11:37 pm, Paul Grenyer paul.gren...@gmail.com wrote: Hi First, Hibernate4GWT has

Re: GWT, hibernate4gwt and HibernateTemplate

2009-05-11 Thread Paul Grenyer
Hi Any clues how you configured GWT with Gilead lib to support hibernate lazy loading. I am going through all examples but seems they use Spring. Simple examples are always good. :) It's not me you need to ask -- Thanks Paul Paul Grenyer e: paul.gren...@gmail.com w:

Re: GWT and Google Crawler

2009-05-11 Thread Salvador Diaz
No, a GWT application is not a normal html site if it's all GWT. Robots won't be able to index the contents of your GWT site unless you implement some tricks. Here are some interesting links related to your question: http://blogoscoped.com/forum/79155.html

Reducing GWT Generated javaScript file size

2009-05-11 Thread mcasanke...@gmail.com
Hi all, I am developing very large enterprise application... I am facing the file size problem generated by the GWT compiler I want to know how to reduce the generated javascript file size (Generated by the GWT Compiler)? I also want to know that is GWT good choice for Large

Re: GWT + Applet

2009-05-11 Thread mcasanke...@gmail.com
Thanks Mars for ur sweet reply On May 11, 1:49 pm, mars1412 martin.trum...@24act.at wrote: first you should try to get your applet run in a plain html-file if this works:  * pay attention to this:http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa...  * and if you still

Re: Announcing GWT 1.6...and quite a bit more

2009-05-11 Thread Rohit Vadera
Does GWT 1.6 support Gilead magic automatically for hibernate objects. Unable to find example where steps are given to integrate Hibernate and GWT with Gilead. On Apr 8, 8:57 am, Bruce Johnson br...@google.com wrote: Hi Folks! Exciting news today. Rather than attempting to describe

Re: GWT + Applet

2009-05-11 Thread mcasanke...@gmail.com
Hey thanks marks I got On May 11, 1:49 pm, mars1412 martin.trum...@24act.at wrote: first you should try to get your applet run in a plain html-file if this works:  * pay attention to this:http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa...  * and if you still

Gilead GWT not getting configured

2009-05-11 Thread Pints
Hi, I am using GWT1.6 I am already doing the following to configure Gilead in GWT-Hibernate. 1.) My Pojo class declaration looks like public class Person extends LightEntity implements Serializable 2.) My Service Impl is like public class GreetingServiceImpl extends PersistentRemoteService

Re: Gilead GWT not getting configured

2009-05-11 Thread Jim
If you need a simple solution, you may try Dreamsource ORM. It almost provides more features than Hibernate without lazy loading that doesn't work in GWT applications. You can see GWT mail example that is using RPC to serialize POJO data at http://www.gwtorm.com/gwtMail.jsp. Development will be

Re: Gilead GWT not getting configured

2009-05-11 Thread Rohit Vadera
Hi Jim, Thanks for your replies but i am forced not to switch from Hibernate at this point. Any helps please from Gilead perspective. On May 11, 4:36 pm, Jim jim.p...@gmail.com wrote: If you need a simple solution, you may try Dreamsource ORM. It almost provides more features than

Re: Reducing GWT Generated javaScript file size

2009-05-11 Thread Charlie Collins
First, if you search this forum you will see that this question has been explored many times here. Second, yes, GWT has been used for many large projects very successfully, in fact I would argue that it scales better than many other approaches - but that is really a personal take and beyond the

Re: Can we set Locale in GWT Hosted mode browser?????

2009-05-11 Thread El Mentecato Mayor
The same way you would set it in web mode (?locale=en appended to your app's URL). If you want it to be that locale by default when you launch hosted mode, then modify the URL in whatever launcher you have for Hosted mode to always have this locale. On May 8, 6:08 am, Nim

Re: Sending email from Server Side

2009-05-11 Thread Salvador Diaz
I think you need to learn a bit more about how email works before trying to do that. For the record, gmail.com is an http server not a smtp one. If you don't want to bother learning about email protocols, I suggest you try smtp.gmail.com instead of 209.85.171.83 Cheers, Salvador On May 11,

Re: GWT for WAP

2009-05-11 Thread aff
The project is about a war in a tomcat to serve wml and xhtml (several versions of both) for phone browsers. The idea is that the server should recongize the version (for instance, XHTML 1.2) of the request and generate the response accordingly. If your application is to be run on the web the

Private class VS. enum

2009-05-11 Thread Antoine
Hello. I’m currently playing with GWT and there is something I don’t understand: why do you use private classes and not enumeration. For instance, the location of a widget in the DockPanel is using the DockLayoutConstant and not an enumeration. One of the biggest advantage of the enum is the

Re: Gears GWT API on Android behaving differently?

2009-05-11 Thread Evan Ruff
Vitali, GWT does not seem too excited about Matcher and bombs out completely. I don't believe it's compatible client side, as it says java.util.regex cannot be imported. I've confirmed that Gears on Android does not support sentences with another user. I misspoke when I posted my code snippet,

Re: Eclipse plugin - empty src folder

2009-05-11 Thread Jason Parekh
Hi Maarten, What is the full path to this project? Are there any characters in the path that could be revealing bugs in the plugin? Also, which View are using to look at the source folder? Can you check to see if the Navigator view (Window Show view Navigator) shows the files? After the

Newbie question about testing guis

2009-05-11 Thread rakesh mailgroups
Hi, I've just been told by the powers-that-be that I will be taking over development of a GWT-Ext app thats just been started. I know very little about GWT and intend to read up soon but I have a question that I will probably not find in the docs and thought I would ask this group. My previous

Re: File upload - handling on server

2009-05-11 Thread gwtGrady
Whe you say uploading file does not work, what exactly do you mean? Any error message? On May 10, 8:08 am, tom_gwt tomas.h...@gmail.com wrote: Hi everyone, i'm using GWT 1.5.3 and gwtswfext (handling file upload on client side, javascript/flash library

Re: Re: Error installing google plugin for eclipse

2009-05-11 Thread Rajeev Dayal
Hi mominet, If you look at your workspace JREs, which one is selected as the default? Rajeev 2009/5/11 mominet momi...@163.com 已经解决 3.4.1 error 3.4.2 OK 在2009-05-09,momi...@163.com momi...@163.com 写道: me too On 4月9日, 上午2时17分, Jose Diaz jamdiazd...@gmail.com wrote: This is

Re: Hot Code Replace Failed triggered on any change, even comment change

2009-05-11 Thread Joel Webber
You can indeed safely ignore it. The IDE found itself unable to hot-swap the code within the hosted-mode infrastructure's ClassLoader, but hosted-mode's design guarantees a correct hot-swap on refresh (which is a bit more like a regular browser anyway, which is nice). @scottb, mmendez: Do you guys

Re: Hot Code Replace Failed triggered on any change, even comment change

2009-05-11 Thread Miguel Méndez
As far as I know, it is not. 2009/5/11 Joel Webber j...@google.com You can indeed safely ignore it. The IDE found itself unable to hot-swap the code within the hosted-mode infrastructure's ClassLoader, but hosted-mode's design guarantees a correct hot-swap on refresh (which is a bit more

Re: Eclipse plugin - empty src folder

2009-05-11 Thread Zainab Aziz
Hello Maarten, Did you try to refresh your project in Eclipse, to do so, right- click on your project in Eclipse and select refresh. This will synch your project in Eclipse with your file system on your computer. Also, in Ecplise you can set filters of what files to show, make sure that you

launching GWT application with rpc on IIS.

2009-05-11 Thread Max
How can I launch a GWT application with rpc on IIS ? I'm receiving Error (405 Method not allowed). Do I need to configure anything on IIS? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Return Problem

2009-05-11 Thread Zainab Aziz
Take a look: http://ukitech.blogspot.com/2008/12/gilead.html On May 11, 4:16 am, Rohit Vadera rohitvad...@gmail.com wrote: Will the following work for GWT1.6? inherits name='net.sf.gilead.Adapter4Gwt15'/ On May 11, 2:10 pm, Rohit Vadera rohitvad...@gmail.com wrote: Here i got the jars

Tootip on Tab Header

2009-05-11 Thread gf
Hy, I tried to put a toolTip on a Tab Header without success. But it is possible, isn't it? Can anyone give me a hince how to do it? Thanks, Edgar --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Gears GWT API on Android behaving differently?

2009-05-11 Thread Vitali Lovich
yeah... not really sure what you're trying to do with the split algorithm - it's unnecessarily messy. try just using JSNI - I'm not sure why you're having problems with the Java regexp. Have you tried 1.6? It seems like this is a bug in GWT. private static native String fixQuery(String query,

Recompiling gives new JS code without changing Java source

2009-05-11 Thread Steve Armstrong
I'm having trouble tracking down this issue. This question will be kind of vague as I'm still trying to understand this enough to ask an informed question. Also, I can't just post my source since it's a work project. Everytime I compile my GWT project, I end up with different javascript, which

Re: File upload - handling on server

2009-05-11 Thread tom_gwt
I get 404 error. Simply the file is not written in HDD. Like I said, when i run the app in hosted mode, this works. Here is the servlet code: package com.myapplication.server; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import

Re: Gilead GWT not getting configured

2009-05-11 Thread Jamie
Do your pojos / schemas contain any relations? As in, does class A reference class B? I had to put a 'join fetch' clause into my queries to get that working properly. As in, something like select object from MyClassA object join fetch object.myClassB which tells hibernate to fetch it

Re: Eclipse Plugin Compile Button Stack Overflow

2009-05-11 Thread louatia...@gmail.com
the plugin (deploy GAE application makes me avoid proxy problems ) because I still can't deploy with command-line when using proxy even if I specify -Dttp.proxyHost or whatever so it will be nice to be able to set the VM parameter -Xss or else when using thse plugin On 7 mai, 00:55, Sumit

Re: Calling GWT RPC method from external JavaScript???

2009-05-11 Thread Jamie
Please refer to the GWT documentation, Coding Basics, and look for a section called Invoking Java methods from JavaScript. http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideJavaScriptNativeInterface On May 11, 5:53 am, Eric Chow eric...@gmail.com wrote: Hello, How

Re: File upload - handling on server

2009-05-11 Thread gwtGrady
I assume you are deploying using a .war file. If so, did you add the necessary servlet mapping to the web.xml file? On May 11, 10:41 am, tom_gwt tomas.h...@gmail.com wrote: I get 404 error. Simply the file is not written in HDD. Like I said, when i run the app in hosted mode, this works.

Re: Private class VS. enum

2009-05-11 Thread Adam T
I guess it's because of earlier versions, but there are also questions on efficiency of enums in compiled code going on at the moment. For example: * GWT write up on possible future optimisations for enums: http://code.google.com/p/google-web-toolkit/wiki/EnumOptimizations * another write up

Re: Sending email from Server Side

2009-05-11 Thread abhiram wuntakal
Hi Salvador, Thanks a lot for that quick response. Well, i am not much familiar with the protocols. I used the smtp.gmail.com instead of the ip string. Now i am getting stuck at an other place and I am getting an error like gwt com.sun.mail.smtp.smtpsendfailedexception: 530 must issue a

TileLayer (eg. hiking map) as overlay

2009-05-11 Thread Markus Obdenbusch
Hi everybody, actually I've spend the whole da to figure out to do this: http://www.bdcc.co.uk/GoogleCrunch/Crunch.htm with GWT and the Maps Api in JAVA. I have already generated tiles (Map Snippets in different zoom factors). What I don't get: How do I add TileLayers (Hiking Maps e.g.) on top

Re: RPC callback problem

2009-05-11 Thread Pavel Byles
What was the mistake? On Wed, May 6, 2009 at 4:06 PM, Ouaibou ouai...@gmail.com wrote: There was a little mistake in my DTO. Now all is okay. Thanks for your help. On 6 mai, 20:23, Ouaibou ouai...@gmail.com wrote: I have tried with DTO but i always have the following error : This

Re: RPC Call and onSuccess get File.

2009-05-11 Thread Sergio Silva
Just to let everyone updated the only 'clean' way i found to solve this problem. Instead of making a RCP call to generate the report (i believe this was the cause of may problem), I've created a Hidden form with hidden components, filled with all atributes i needed, what is posted when the user

Re: Second try: app works on Linux, but not on Windows (1.6.4 hosted mode)

2009-05-11 Thread Scott Blum
Michael, I'll need you to help debug this. Can you put a break point where the exception is getting thrown and see what Java method is being called? If you're using Eclipse, you can use the Debug menu while debugging to set a Java exception breakpoint for ClassCastException (caught and

Re: Gilead GWT not getting configured

2009-05-11 Thread Jamie
Oh yeah, one other thing, have you tried running in the debugger, and breaking in your service method? The GWT RPC mechanism will catch everything, so that may be hiding what is really going wrong. On May 11, 1:00 pm, Jamie jamiesharbor-sou...@yahoo.com wrote: Do your pojos / schemas contain

Re: Eclipse Plugin Compile Button Stack Overflow

2009-05-11 Thread Rajeev Dayal
Also, a fix to allow you to specify -Xss for the GWT Compile when deploying will be available in the upcoming plugin release. On Mon, May 11, 2009 at 2:36 PM, Rajeev Dayal rda...@google.com wrote: Those settings for the command line should definitely work. If you don't mind, can you tell me

Re: Eclipse Plugin Compile Button Stack Overflow

2009-05-11 Thread Rajeev Dayal
Those settings for the command line should definitely work. If you don't mind, can you tell me exactly which flags you're adding to the command line to enable the proxy? On Mon, May 11, 2009 at 11:59 AM, louatia...@gmail.com louatia...@gmail.com wrote: the plugin (deploy GAE application makes

Re: OOPHM + noserver + IE + RPC gives JavascriptException

2009-05-11 Thread Sumit Chandel
Hi b.thakker, As you may already know, OOPHM is a trunk feature that is still under development and that requires further polish before being stable enough for everyday use. That said, I'm glad to see that you've been bold enough to give it a try :-) There is an awful lot of stack through which

Drag and Drop

2009-05-11 Thread Cliff Newton
I've tried using GWT dnd but I never succeeded in getting it to work, and since what I wanted to do was so simple anyway, I just decided to write it myself. I have coded some mouse listeners for a class. One listener is attached to an image. This listener will update an Image variable upon mouse

Re: RPC Deployment issue

2009-05-11 Thread Sumit Chandel
Hi Harry, You will need to build the starter project in order to generate the server-side GreetingServiceImpl.class files. You can do this by downloading the Apache Ant build tool and running ant from the command-line while in the starter project directory. The ant build command will read the

Re: SCRIPT elem to read JSON src does not work

2009-05-11 Thread Blessed Geek
As for why JavaScript is referred to as native, well, you can't write JavaScript in Java code without the compiler getting upset yet it's sometimes useful to do.  The clever way in which GWT gets around this is to use Java's native interface syntax, hence by extension the Javascript

Re: Drag and Drop

2009-05-11 Thread Cliff
I did it again :( I found the answer. The main class needs to implement the EventPreview interface, make this call: DOM.addEventPreview(this), and use the following function: public boolean onEventPreview(Event event) { int eventType = DOM.eventGetType(event);

Re: File upload - handling on server

2009-05-11 Thread tom_gwt
Of course i didn't.. Thanks a lot, now my app works! I'm so stupid, how could I forgot? :-) On 11 kvě, 19:04, gwtGrady greggradw...@gmail.com wrote: I assume you are deploying using a .war file. If so, did you add the necessary servlet mapping to the web.xml file? On May 11, 10:41 am,

Re: launching GWT application with rpc on IIS.

2009-05-11 Thread maku
A RPC is java/servlet based. I can not imagine that IIS is able to run this kind of application. On May 11, 5:19 pm, Max midhunsgr...@gmail.com wrote: How can I launch a GWT application with rpc on IIS ? I'm receiving Error (405 Method not allowed). Do I need to configure anything on IIS?

Using noserver option in GWT 1.6

2009-05-11 Thread PeteLachall
Can anyone find documentation on how to do this? There was thorough documentation in the FAQs for previous versions. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Bad NPObject as private data!

2009-05-11 Thread penguin
Hi, I was wondering if anyone knows about Bad NPObject as private data! error. I won't present the code that generates it, because it seems that almost any code in the OOPHM hosted mode results in it. I am using GWT and the plugin from the head of branch as of 2009-05-03. Plugin: GWT Hosted

GWT incubator log inherit production throws an error

2009-05-11 Thread retro
When i try to inherit Logging-production it throws an error saying gwt- logging property not defined. Is there any documenation other then the wiki which shows how to correctly use this in production mode and also how to configure the servlet if we need too for remote logging?

Re: Calling RPC Service inside another module

2009-05-11 Thread sim123
Its broke again!!, I apologize for posting same thing again, but somehow its not working. Here is the configuration details : Project A : gwt 1.5 application has couple of RPC defined Project B : gwt 1.6 application, has inherited A, included project in eclipse, here is B.gwt.xml ?xml

Re: GWT 1.6 - How do I change the default war directory name

2009-05-11 Thread Fernando
Hi, I have the same problem. Where did you put the switch -war? In the Run Configurations? I'm using Eclipse. Thanks Fernando On 3 abr, 06:33, Jan jan.ja...@gmail.com wrote: Hi, actually the layout of my application looks as shown below: - src - WebContent - ... (a couple of other

1.6 error with declaring servlets in inherited modules

2009-05-11 Thread Thad
In attempting to move a widget from 1.5 to 1.6. I'm having problems with the servlet path. I have a module, ViewerWidget. In order to test this independently of other modules, I have Viewer, which inherits ViewerWidget and has its own entry point. Under 1.5 I could run Viewer just fine. I

Re: Incubator ScrollTable how to remove icon right-top corner

2009-05-11 Thread Sumit Chandel
Hi Mike, A possible solution would be to subclass the PagingOptionsImages image bundle interface and place your own images named the same as the PagingOptionsImages methods in your subclass package. This should replace the standard paging table images with your own (which I think in your case

Re: GWT 1.6 - How do I change the default war directory name

2009-05-11 Thread Jason Essington
if you are using the Google Eclipse Plugin to compile your project, just select GWT Compile (or hit the GWT Compile button) and in the resulting dialog click the disclosure triangle next to the word Advanced at the bottom. This will expand a field where you can add extra compiler

Re: SCRIPT elem to read JSON src does not work

2009-05-11 Thread Blessed Geek
All right and thanks, based on your advice and further reading ... I uploaded my app engine + gwt app at http://links.blessed-are-the-geek.com/home . I created a GWT based generic site builder where anyone could build a site by specifying the sitemap. I used two json techniques: 1. The

Re: History implementation and Kitchen sink example

2009-05-11 Thread Sumit Chandel
Hi ytbryan, The KitchenSink sample application, previously used in GWT 1.4 and prior to showcase the GWT widgets, has been replaced by the more appropriately named Showcase sample application that serves the same purpose. You should be able to find the Showcase sample application in your GWT

Re: Tree SelectionEvent fired twice

2009-05-11 Thread Sumit Chandel
Hi meandi, I couldn't reproduce the issue you described using the code snippet you provided (along with the setDefault() method implementation below. private void setDefaults(){ // Building the tree ... TreeItem root = new TreeItem(root); root.addItem(item0); root.addItem(item1);

Re: Calling RPC Service inside another module

2009-05-11 Thread sim123
I think I got it, I had @RemoteServiceRelativePath(userinfo) missing in my service declaration inside application A and GWT 1.6 requires that. http://code.google.com/webtoolkit/doc/1.6/ReleaseNotes_1_6.html Thanks for the help. On May 11, 2:44 pm, sim123 sim3...@gmail.com wrote: Its broke

Re: GetParent() Calls to a Composite type

2009-05-11 Thread Sumit Chandel
Hi Bobby, From a design perspective, is there any reason why WidgetB can't be a part of the composite WidgetA? A composite is essentially made up of a set of other widgets. It seems like if WidgetB belongs or is added to the WidgetA composite, it is actually part of the WidgetA composite.

Re: Announcing GWT 1.6...and quite a bit more

2009-05-11 Thread Sumit Chandel
Hi Rohit, As far as I know, the Gilead library does indeed support GWT 1.6 (as much of the RPC logic has remained constant between GWT 1.5 and GWT 1.6). Please see the thread below on the Gilead forum. Gilead forum: http://sourceforge.net/forum/message.php?msg_id=7378179 The Gilead homepage also

Re: Return Problem

2009-05-11 Thread Rohit Vadera
Hi, I followed the tutorial given in Gilead and getting the following error. any ideas. com.google.gwt.user.client.rpc.StatusCodeException: html head meta http-equiv=Content-Type content=text/html; charset=ISO-8859-1/ titleError 500 org.hibernate.cfg.ExtendedMappings.getReflectionManager()Lorg/

Serialization

2009-05-11 Thread jagadesh
Why is there a serilization marker interface in Gwt when we have one in java. both are marker interfaces , why then two is Gwt serialization interface do some thing more or less? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

How to have the first column alone to be freezed when scroll to the right

2009-05-11 Thread Suren
Hi All, I am already using a ScrollTable to have the freeze header functionality. so it has one flexTable for the header and Grid for the data. Now in the data grid I want the first column to be freeze during the scrolling like the freezed header functionality. ScrollTable can take only two

Re: Serialization

2009-05-11 Thread Adam T
From a GWT perspecive, they're equivalent: http://code.google.com/p/google-web-toolkit/issues/detail?id=21 http://code.google.com/p/google-web-toolkit/issues/detail?id=21#c19 http://code.google.com/p/google-web-toolkit/issues/detail?id=933#c2 //Adam On 12 Maj, 06:35, jagadesh

[gwt-contrib] Re: Label ellipsis support!

2009-05-11 Thread Salvador Diaz
Hi, Thanks for your contribution. I suggest you to read the contributors guide though: http://code.google.com/webtoolkit/makinggwtbetter.html#contributingcode Cheers, Salvador On May 10, 10:01 am, LooneyLynn looneyl...@gmx.biz wrote: For my own project I found it rather frustrating that there

[gwt-contrib] Re: JavaScriptException with 1.6.2

2009-05-11 Thread Joel Webber
I filed issue 3644 for this, and am going to get a fix into the 1.6 update. On Sat, Apr 11, 2009 at 2:29 AM, Gilles B gilles.broch...@gmail.com wrote: I keep on investigating, if I remove all setEnabled call (TextBox widget) used to gray not inputable fields (when I display the dialog) it

[gwt-contrib] Re: java script Error with IE7 and GWT 1.6.4

2009-05-11 Thread Joel Webber
I filed issue 3644 for this, and will get a fix into the 1.6 update. On Wed, Apr 22, 2009 at 11:54 AM, Gilles B gilles.broch...@gmail.comwrote: Hello, I have an error in some popup windows used to update data. It's not a systematic (!) error but not so difficult to produce in my

[gwt-contrib] [google-web-toolkit commit] r5328 - Fix checkstyle errors.

2009-05-11 Thread codesite-noreply
Author: j...@google.com Date: Mon May 11 07:08:30 2009 New Revision: 5328 Modified: changes/jat/ihm/dev/core/src/com/google/gwt/core/ext/soyc/impl/MemberFactory.java changes/jat/ihm/dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorderImpl.java

[gwt-contrib] Fix for issue 3644 (Native exception in [Node Element].is()

2009-05-11 Thread jgw
Reviewers: jlabanca, rjrjr, Description: c.f. http://code.google.com/p/google-web-toolkit/issues/detail?id=3644 Please review this at http://gwt-code-reviews.appspot.com/34801 Affected files: user/src/com/google/gwt/dom/client/Element.java user/src/com/google/gwt/dom/client/Node.java

[gwt-contrib] Re: Fix for issue 3644 (Native exception in [Node Element].is()

2009-05-11 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/34801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r5331 - updating branch-info.txt

2009-05-11 Thread codesite-noreply
Author: sp...@google.com Date: Mon May 11 07:59:52 2009 New Revision: 5331 Modified: branches/snapshot-2009.04.28-r5307/branch-info.txt Log: updating branch-info.txt Modified: branches/snapshot-2009.04.28-r5307/branch-info.txt

[gwt-contrib] Re: Fix for issue 3644 (Native exception in [Node Element].is()

2009-05-11 Thread jgw
On 2009/05/11 14:56:03, jlabanca wrote: LGTM Thanks, committed to releases/1.6 as r5332. http://gwt-code-reviews.appspot.com/34801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix for issue 3644 (Native exception in [Node Element].is()

2009-05-11 Thread jgw
http://gwt-code-reviews.appspot.com/34801/diff/1/5 File user/src/com/google/gwt/dom/client/Node.java (right): http://gwt-code-reviews.appspot.com/34801/diff/1/5#newcode58 Line 58: return (!!o) (!!o.nodeType); On 2009/05/11 15:21:07, kellegous wrote: I don't understand why you need !! on both

[gwt-contrib] Re: Fix for issue 3644 (Native exception in [Node Element].is()

2009-05-11 Thread John Tamplin
On Mon, May 11, 2009 at 11:35 AM, j...@google.com wrote: I tried that initially (return o ...), but managed to get null returned. Turns out js (at least on WebKit) will coerce the (o) expression to a boolean context for the comparison, then proceed to return it uncoerced if it early-outs the

[gwt-contrib] [google-web-toolkit commit] r5329 - Fix incorrect nesting when there is no binary oracle, ignore compiled

2009-05-11 Thread codesite-noreply
Author: j...@google.com Date: Mon May 11 07:46:56 2009 New Revision: 5329 Modified: changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/CompilationState.java changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/CompilationUnit.java Log: Fix incorrect nesting when there is no

[gwt-contrib] [google-web-toolkit commit] r5330 - Reverting the code-splitting changes (r5296 and r5293) from the snapshot,

2009-05-11 Thread codesite-noreply
Author: sp...@google.com Date: Mon May 11 07:59:01 2009 New Revision: 5330 Added: branches/snapshot-2009.04.28-r5307/user/src/com/google/gwt/core/client/AsyncFragmentLoader.java - copied, changed from r5295, /trunk/user/src/com/google/gwt/core/client/AsyncFragmentLoader.java

[gwt-contrib] [google-web-toolkit commit] r5332 - Fixes issue 3644.

2009-05-11 Thread codesite-noreply
Author: j...@google.com Date: Mon May 11 08:10:30 2009 New Revision: 5332 Modified: releases/1.6/user/src/com/google/gwt/dom/client/Element.java releases/1.6/user/src/com/google/gwt/dom/client/Node.java releases/1.6/user/test/com/google/gwt/dom/client/ElementTest.java

[gwt-contrib] Re: gen2 PagingScrollTable column widths

2009-05-11 Thread jay
But if I set the min and max sizes, then the user cannot resize the columns. And...well, my users need to be able to resize the columns... So, I guess I should enter a feature request (or else provide a patch ;-) that there some way for the table to set the initial column width to the preferred

[gwt-contrib] Re: gen2 PagingScrollTable column widths

2009-05-11 Thread Isaac Truett
Jay, Am I right in understanding that you're expecting the table, when unconstrained, to grow until each column can occupy its preferred width? It should be possible to achieve that, although just setting preferred size may not be enough. There used to be a setColumnWidth() method that would set

[gwt-contrib] [google-web-toolkit commit] r5333 - Fixes Issue 3508 Clicking on a CheckBox's label triggers two click events

2009-05-11 Thread codesite-noreply
Author: rj...@google.com Date: Mon May 11 11:43:45 2009 New Revision: 5333 Modified: trunk/user/src/com/google/gwt/user/client/ui/CheckBox.java trunk/user/src/com/google/gwt/user/client/ui/RadioButton.java trunk/user/test/com/google/gwt/user/client/ui/CheckBoxTest.java Log: Fixes

[gwt-contrib] Re: gen2 PagingScrollTable column widths

2009-05-11 Thread Isaac Truett
Yep, that is what you're doing. Sorry for my failure at reading comprehension. :) I can certainly see why you would have that expectation for an unconstrained table. And if I'm reading John's probably a bug comment correctly, then it sounds like that might be a good thing to enter in the issue

[gwt-contrib] [google-web-toolkit commit] r5334 - It's not reasonable at this time to enforce the rule that a

2009-05-11 Thread codesite-noreply
Author: r...@google.com Date: Mon May 11 13:40:11 2009 New Revision: 5334 Modified: trunk/dev/core/src/com/google/gwt/dev/cfg/ModuleDefLoader.java trunk/dev/core/src/com/google/gwt/dev/cfg/ModuleDefSchema.java Log: It's not reasonable at this time to enforce the rule that a

[gwt-contrib] [google-web-toolkit commit] r5335 - Fixes AsyncFragmentLoader.haveInitialFragmentsLoaded(). In its

2009-05-11 Thread codesite-noreply
Author: sp...@google.com Date: Mon May 11 13:51:44 2009 New Revision: 5335 Modified: trunk/user/src/com/google/gwt/core/client/impl/AsyncFragmentLoader.java Log: Fixes AsyncFragmentLoader.haveInitialFragmentsLoaded(). In its previous state, it could allow code to load before prerequisite

[gwt-contrib] Re: gen2 PagingScrollTable column widths

2009-05-11 Thread jay
I've entered issue #3648 -- http://code.google.com/p/google-web-toolkit/issues/detail?id=3648. thanks! jay On May 11, 1:30 pm, Isaac Truett itru...@gmail.com wrote: Yep, that is what you're doing. Sorry for my failure at reading comprehension. :) I can certainly see why you would have

[gwt-contrib] [google-web-toolkit commit] r5345 - Bump buffer size on Util.copy().

2009-05-11 Thread codesite-noreply
Author: sco...@google.com Date: Mon May 11 17:09:38 2009 New Revision: 5345 Modified: trunk/dev/core/src/com/google/gwt/dev/util/Util.java Log: Bump buffer size on Util.copy(). Review by: spoon Modified: trunk/dev/core/src/com/google/gwt/dev/util/Util.java

[gwt-contrib] [google-web-toolkit commit] r5339 - Early out of expensive script-size logging in Link when LogLevel TRACE.

2009-05-11 Thread codesite-noreply
Author: sco...@google.com Date: Mon May 11 17:08:20 2009 New Revision: 5339 Modified: trunk/dev/core/src/com/google/gwt/dev/Link.java Log: Early out of expensive script-size logging in Link when LogLevel TRACE. Review by: spoon (desk) Modified:

  1   2   >