Re: How to minimize browser using GWT ?

2009-10-30 Thread Rinku
Thanks for your replies. On Oct 29, 2:10 pm, Kris krisajenk...@gmail.com wrote: In that case, some kind of custom-written, browser-specific plugin is your only option.  Firefox would probably be the easiest to write for. If it has to work with all browsers, you have a huge task ahead of

Re: Change timezone dynamically, detecting US daylight saving change from Japan

2009-10-30 Thread anjolight
Thanks for the reply and I totally understand what you're saying and let me clarify my challenge. My users are in JAPAN time and they need to detect US daylight saving change. It's a different story from PST users adjusting for US daylight saving change. Any suggestion how I can detect US DST

Re: Change cursor image on mouse over

2009-10-30 Thread Chave
You can use too: this.getElement().getStyle().setProperty(cursor, hand); On 29 oct, 15:50, ian12312 ian.l...@gmail.com wrote: I have added an MouseOverHandler to a Label, when the event is fired how can I change the cursor image to the hand?

Re: TabPanel border - How do I change border color (and tab color)

2009-10-30 Thread alex.d
You need to apply your style to the deckpanel: tabPanel.getDeckPanel ().addStyleName(no-border-style); On 29 Okt., 18:32, thc tclotwor...@integratedsecure.com wrote: Hello, I have been using the TabPanel.setStyleName() method to set TabPanel properties to a custom value in a CCS file.

Re: HTMLPanel Question - how to display raw xml

2009-10-30 Thread Dimitrijević Ivan
You should use HTML (com.google.gwt.user.client.ui.HTML) widget which is suitable for displaying html content. HTML myHTML = new HTML(); myHTML.setHTML(bTest/b and so on...); Best regards! On Oct 29, 4:42 pm, thc tclotwor...@integratedsecure.com wrote: Hey thanks Thomas. Label works good

GWT History Interacts Badly With Non-History iFrame

2009-10-30 Thread Carl
I am developing an application that uses an iFrame to display help page content, while keeping the main page (which contains my GWT widgets) unchanged. This is being done to preserve the state of the GWT widgets while various help pages are viewed by the user. The fundamental problem is this:

GWT JDO

2009-10-30 Thread Akash
Hi, Can sombody help me finding some tutorials how to use JDO with GWT and connect to a database. Regards, Akash --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Need to get around Async calls

2009-10-30 Thread Parmeet Kohli
Hi All, I'm developing a web based testing tool using GWT as the front end. This tool allows the user to add several test steps to a test case. The user has the option to run these test steps individually or the whole test case together. The latter option seems to be an issue though.

Re: hosted mode crash in Linux

2009-10-30 Thread getaceres
I got the same crash yesterday in Linux. I tried using JDK 1.5, 1.6, GWT 1.6 and 1.7 and in all the combinations it crashed randomly. It seems to be more stable adding the -Xmx800m option to extraJvmArgs (I'm using Maven, I don't know how it is using GWT directly). On Oct 29, 7:56 am, simon

Re: Change timezone dynamically, detecting US daylight saving change from Japan

2009-10-30 Thread Thomas Broyer
On 30 oct, 08:04, anjolight anjoli...@gmail.com wrote: Thanks for the reply and I totally understand what you're saying and let me clarify my challenge. My users are in JAPAN time and they need to detect US daylight saving change. It's a different story from PST users adjusting for US

Deploying to JBoss

2009-10-30 Thread Christian López Espínola
I'm trying to deploy a project built with GWT in JBoss, but I'm getting an stacktrace on JBoss logs. I read this thread [1] but I didn't found anything clear on this. The exception is: 2009-10-30 11:34:35,740 ERROR [org.jboss.deployment.MainDeployer] Could not start deployment:

Re: Deploying to JBoss

2009-10-30 Thread Christian López Espínola
Oops, it was a problem with web.xml. Sorry for the noise. On Fri, Oct 30, 2009 at 11:41 AM, Christian López Espínola penyask...@gmail.com wrote: I'm trying to deploy a project built with GWT in JBoss, but I'm getting an stacktrace on JBoss logs. I read this thread [1] but I didn't found

Re: Change cursor image on mouse over

2009-10-30 Thread luisfpg
cursor:hand is IE only. On CSS, you can use both: .myLabel { cursor: pointer; cursor: hand; } On Oct 30, 5:48 am, Chave lunarjc...@gmail.com wrote: You can use too: this.getElement().getStyle().setProperty(cursor, hand); On 29 oct, 15:50, ian12312 ian.l...@gmail.com wrote: I have

Re: GWT JDO

2009-10-30 Thread Akash Gupta
. On Fri, Oct 30, 2009 at 3:58 PM, Akash akash.b...@gmail.com wrote: Hi, Can sombody help me finding some tutorials how to use JDO with GWT and connect to a database. Regards, Akash --~--~-~--~~~---~--~~ You received this message because you are

Re: Need to get around Async calls

2009-10-30 Thread Jason Morris
Hi Parmeet, Why not wrap each type of test step in a Command, which also implements AsyncCallback. Then allow them to be chained together: public abstract class AsyncCommandT implements AsyncCallbackT, Command { private final Command next; protected AsyncCommand(final

Re: Custom Composite widget inside horizontal split panel

2009-10-30 Thread www.netthreads.co.uk
I too have been wrestling with this. It's not quite there yet but I sat down after reading your post and I have got a bit further. It is possible to create a composite for HorizontalSplitPanel and set a listener to watch what the mouse is doing. I defined this below and a listener interface

Re: Custom Composite widget inside horizontal split panel

2009-10-30 Thread www.netthreads.co.uk
Sorry I missed the interface CODE package com.google.gwt.user.client.ui; import com.google.gwt.event.dom.client.MouseMoveEvent; public interface SplitterEventHandler { public void onMouseMove(MouseMoveEvent event); } CODE On Oct 30, 1:40 pm, www.netthreads.co.uk

Re: The output directory for the project should be set to /Hello/war/WEB-INF/classes

2009-10-30 Thread Nathan Wells
look at this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3583q=build%20folder vote for it, please. On Oct 26, 1:03 pm, thirdnormal thirdnor...@gmail.com wrote: I am setting up the Hello sample GWT project using the Google Plugin for Eclipse. However when I change the

Re: hosted mode crash in Linux

2009-10-30 Thread tskaife
I was having the same problem and never found an answer, like the person above I tried java 1.5.0_21, 1.6.0_10, 1.6.0_16 and tried GWT 1.7.1, 1.6.4, 1.5.3. I just ended up updating to GWT 2.0 so if you can go to 2.0 now might be a good time. On Oct 30, 5:33 am, getaceres getace...@gmail.com

Re: GWT JDO

2009-10-30 Thread mariyan nenchev
How about that: http://code.google.com/p/gwt-examples/source/browse/#svn/trunk/Jdo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: TabPanel and VerticalSplitPanel

2009-10-30 Thread Nick
I've been able to successfully insert a horizontal panel that also contains a vertical panel as a tab. I used composition to create my split panel and added that to the tab panel. For example: DecoratedTabPanel tabPanel = new DecoratedTabPanel(); ... class MyTab extends Composite { private

Re: date.compareTo() method doesn't work

2009-10-30 Thread tskaife
I had the same problem, as well, I think it had something to do with where I got the date object from for me (if I create 2 new date objects on the front end it would work fine, but if I got one of them from the database then I would have issues). I just ended up doing a getTime() on both of my

Re: OOPHM and Server Side Page

2009-10-30 Thread Nathan Wells
In the US, at least, the URL is http://code.google.com/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT's On Oct 27, 9:58 am, Thomas Broyer t.bro...@gmail.com wrote: On 27 oct, 15:10, Gabriel guz...@gmail.com wrote: Hi, I am

Re: Is there any way to read content of a POJO object in servlet filter?

2009-10-30 Thread Sripathi Krishnan
There is no direct method to do that. You will have to copy/paste code from RemoteServiceServlet into your Filter to achieve what you want. And it will have an impact on your peformance, since the deserialization will happen twice - in your filter and in the rpc servlet. If you want to read

Re: Running multiple instances of the same GWT Application in the same document

2009-10-30 Thread Raziel
Hi Thomas, thanks for the links, although like the ticket says they're not very conclusive, and not quite what I'm looking for. In general I'm thinking through all the considerations I have to keep in mind to build this application which can be injected into the same page, by different and

Re: TabPanel border - How do I change border color (and tab color)

2009-10-30 Thread thc
Excellent! That did it. Thanks. On Oct 30, 3:48 am, alex.d alex.dukhov...@googlemail.com wrote: You need to apply your style to the deckpanel: tabPanel.getDeckPanel ().addStyleName(no-border-style); On 29 Okt., 18:32, thc tclotwor...@integratedsecure.com wrote: Hello, I have been

Re: RunAsyncCallback

2009-10-30 Thread Sripathi Krishnan
I haven't tried it out with GIN / DI. I am 'guessing' that it won't work , but I could be wrong. --Sri 2009/10/29 skrat dusan.malia...@gmail.com Okay, that's kind of clear. Async Package (gateway class) looks nice, but how does it fit within Gin and DI? On Oct 26, 4:24 am, Sripathi

Re: Running multiple instances of the same GWT Application in the same document

2009-10-30 Thread Ian Bambury
Hi Raziel, It might help if you explained what the problem is that you are trying to solve. I can't think of any situation where an html page needs more than one GWT app in it. Ian http://examples.roughian.com 2009/10/30 Raziel raziel...@gmail.com Hi Thomas, thanks for the links, although

GWT Bookmarklet Linker

2009-10-30 Thread krishna
Hi All, Does a bookmarklet linker exist? Or does anyone know how to get a gwt module loaded as a bookmarklet? Looks like this project is a gwt based bookmarklet http://code.google.com/p/gwt-instrumental/ But the gwt source is not available, only the compiled output is available. Thanks in

Re: Running multiple instances of the same GWT Application in the same document

2009-10-30 Thread Raziel
It's a forms framework where different elements in a complex page (you can call them portlets, or just randomly arranged elements) include forms they wish to render. Given that not all my app is GWT, I cannot nicely control the integration with the forms rendering framework which I'm going to

Re: Running multiple instances of the same GWT Application in the same document

2009-10-30 Thread Ian Bambury
Would it be possible for one GWT app to be included every time (with v2.0 the initial download can be quite small as it allows you to lazy-load code chinks as needed with code-splitting). This one app then checks for certain IDs added by the portlets. If they exist, it does its stuff. RootPanel

Re: Running multiple instances of the same GWT Application in the same document

2009-10-30 Thread Raziel
Yeah, but my concerns are not as much at that level, but with things more at the low level of how GWT works. Like what I mentioned about how the selection script works to load the application JS code into the iframe, and then execute the bootstrap logic. So I think I'm leaning to have one

Collection for Actors Profile

2009-10-30 Thread vSenthil
Hi Friends, http://www.cool-gallery.blogspot.com/ Just view the link and click the blue color underlineing words. Thank you Friends. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Collection for Actors Profile

2009-10-30 Thread Ian Bambury
I thought new members were being moderated. Ian http://examples.roughian.com 2009/10/30 vSenthil vpsenth...@gmail.com Hi Friends, http://www.cool-gallery.blogspot.com/ Just view the link and click the blue color underlineing words. Thank you Friends.

Can you get the compiler to list the permutations?

2009-10-30 Thread Martin Hutchinson
To speed up development I've tried to cut down the number of permutations that are compiled by fixing the language and user agent. I'm curious as to why I can't get the number of permutations down to 1, even when fixing the user agent to gecko and the language to en. I've tried to increase the

Internationalization

2009-10-30 Thread SkiD
Hello, i've a java-gwt-project. I want to translate all english-strings/constants in german words, but i want to use that function call: caption.getString(MyTranslateString):String. That method returns a String translated in german, if the locale is set up to de in the URI. How can i do that ?

Packaging Applications in GWT

2009-10-30 Thread Sudeep S
Hello, Can someone suggest the techniques/best practices involved in packaging the GWT applications where the client code and server code reside separately. Thanks Sudeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

tutorials/1.6/RPC code mistake

2009-10-30 Thread János Kiss
Hi, I was doing the RPC tutorial at GWT site: http://code.google.com/intl/hu-HU/webtoolkit/tutorials/1.6/RPC.html and I found a mistake in one of the example code. If somebody just copies the codes according to the instructions, everything goes well until reaching the exception handling part. The

Possible Newbie Question: How do I use a shared model in a GWT app?

2009-10-30 Thread Eric
Hello all, I did some searching through this group, the on-line documents, help and Google at large, so if the answer is RTFM, please send a link to the correct FM. I want to have the following packages in my source hierachry: com.my.company.model -- Contains representations of my data objects

Best practice for kicking off and monitoring a long-running process over RPC

2009-10-30 Thread pjaromin
I'm writing a remote service that executes a long-running process that I'm updating on the client-side using a progress bar widget. What I'd like to do is have two methods in the service: String longRunningProcess(Request request); Progress checkProgress(String id); The question is, what's

Eclipse Plugin and a custom GWT version number.

2009-10-30 Thread Jon
We have a slightly customized version of the GWT toolkit. So, we customized the version number to prevent confusion if it got released into the wild. The version is fusion.1.5.3. It seems that the Eclipse Google plugin tries to parse the version number and throws a NumberFormatException on the

RichTextArea with non-editable hyperlinks

2009-10-30 Thread Rob Wood
I'm porting an application from Eclipse RCP to GWT. One of the features I have are links embedded in text which the users can't edit directly -- only through menu options. As far as I can see, the best way to implement this in GWT is through hyperlinks in the RichTextArea widget, but there is

Which GWT widget toolkit is better?

2009-10-30 Thread Satish
Hello We are starting a new project to done using GWT and MySQL. I have couple questions to choose which libraries to make the development easier. 1. What kind of persistence library should be better to integrate GWT MySQL. Any suggestions on compatible ORMs? If at all necessary. 2. Is it good

WebAppCreator class not found v.1.7.0+

2009-10-30 Thread Shmaff
How is it that when I follow the instructions @ http://code.google.com/webtoolkit/gettingstarted.html#New I get: [Snow Leopard Terminal] computer:trunk user$ webAppCreator -out MyApplication www.companyname.MyApplication usage: dirname path Exception in thread main

Internationalization Mapping

2009-10-30 Thread SkiD
Hello, i want to internationalize my program in that shape: I have a properties file suffix _de, _fr etc. with all translated words like that for german: dog = Hund cat = Katze My Caption = Meine Überschrift I want to call the method for translation in my program like that:

ECLIPSE + GWT client + Python server

2009-10-30 Thread nl65
Need to configure a Web Application on Eclipse where Client is GWT and Server is Python (Pydev) . Possible ? How ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Feature request: dependent permutations

2009-10-30 Thread Shaun
Hi, I'm looking for a way to support additional sub-environments with GWT. By sub-environment, I mean an environment that is similar to an existing environment, but requires specific tweaks of it's own that don't merit a full user.agent right now. Two examples that are causing me pain at the

How can I interrupt form submit?

2009-10-30 Thread danblack
I have a html-form form id=my_form input type=text input type=submit id=submitBtn / /form and I want to set a custom handler on a form submit event in my GWT application. I tried to use 1) formPanel.addSubmitHandler(submitHandler); 2)

Re: tutorials/1.6/RPC code mistake

2009-10-30 Thread Chris Ramsdale
Thanks for the heads up. We'll update the doc with the correct iteration code. - Chris On Oct 29, 4:02 pm, János Kiss ffun...@gmail.com wrote: Hi, I was doing the RPC tutorial at GWT site:http://code.google.com/intl/hu-HU/webtoolkit/tutorials/1.6/RPC.html and I found a mistake in one of

Re: Best practice for kicking off and monitoring a long-running process over RPC

2009-10-30 Thread David Durham
On Thu, Oct 29, 2009 at 4:41 PM, pjaromin patrick.jaro...@gmail.com wrote: I'm writing a remote service that executes a long-running process that I'm updating on the client-side using a progress bar widget. What I'd like to do is have two methods in the service: String

Re: Best practice for kicking off and monitoring a long-running process over RPC

2009-10-30 Thread david.durham.jr
On Oct 30, 12:56 pm, David Durham david.durham...@gmail.com wrote: too.  I'd probably use a database for the uuid gen (could just be a sequence) and to start the state of processes machinename/running/finished.   meant *store* the state of the processes

Re: Best practice for kicking off and monitoring a long-running process over RPC

2009-10-30 Thread David Durham
On Fri, Oct 30, 2009 at 12:56 PM, David Durham david.durham...@gmail.com wrote: You can get info from the process via output stream and error stream. Uh... the input stream and the error stream provide info from the process .. not really selling my consulting skills here .. -Dave

GWT + ContentServer

2009-10-30 Thread Sudeep S
Hi Is it possible to deploy the GWT client code on Content Server and the server code on Application Server. My current application heavily uses Content Server for the front end, so I need to find a way to get GWT working with Content Server. Thanks Sudeep

GWT UI to image using Java / GWT

2009-10-30 Thread Arthik Babu
Hi, I have a requirement to convert a GWT(Google web toolkit) UI to the image file. Can anyone please give some input / suggestions. I have googled and I found most of the thing with respect to ActiveX controls , AWT. I am not supposed to use ActiveX or AWT (bcos in GWT Java's AWT API is not

Re: GWT + ContentServer

2009-10-30 Thread maratkalibek
Hi, can you name your Content Server? GWT is only about client side and can interoperate with servers by JSON or GWT built-in RPC. So your server must provide one of this approaches. On 31 окт, 00:24, Sudeep S sudee...@gmail.com wrote: Hi Is it possible to deploy the GWT client code on

Re: Which GWT widget toolkit is better?

2009-10-30 Thread maratkalibek
2. I think GXT is more better than GWT-EXT, because GXT compiles directly from Java, but GWT-EXT is using ExtJS and not very last version. But GXT is not for free. On 30 окт, 11:30, Satish simplysa...@gmail.com wrote: Hello We are starting a new project to done using GWT and MySQL. I have

Is it possible to use GXT in GWT 2.0???

2009-10-30 Thread maratkalibek
Hi, is it possible to use XML UI in GWT 2.0 with GXT? --~--~-~--~~~---~--~~ 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-toolkit@googlegroups.com To unsubscribe

Re: GWT + ContentServer

2009-10-30 Thread Sudeep S
We are using Fatwire On Sat, Oct 31, 2009 at 12:17 AM, maratkalibek maratkali...@gmail.comwrote: Hi, can you name your Content Server? GWT is only about client side and can interoperate with servers by JSON or GWT built-in RPC. So your server must provide one of this approaches. On 31

Anyone using soafaces for client server communication ?

2009-10-30 Thread mike_mac
http://code.google.com/p/soafaces/ I've tried to get it working but it seems to be broken ... it claims to allow passing of Object[] but when I try to use it (Object[] objs = new Object[2]) I get a Serialization exception which seems to be from generated code ...

Re: Feature request: dependent permutations

2009-10-30 Thread Thomas Broyer
On 30 oct, 17:48, Shaun fas...@gmail.com wrote: Hi, I'm looking for a way to support additional sub-environments with GWT.  By sub-environment, I mean an environment that is similar to an existing environment, but requires specific tweaks of it's own that don't merit a full user.agent

Re: Possible Newbie Question: How do I use a shared model in a GWT app?

2009-10-30 Thread Eric
I believe that everything in that package complies with those rules (this is a pretty simple app so far). I am just trying to get past the error: Line 18: No source code is available for type com.my.company.model.MyClass; did you forget to inherit a required module? I can't find documentation

Re: How can I interrupt form submit?

2009-10-30 Thread Thomas Broyer
On 30 oct, 18:17, danblack firewor...@gmail.com wrote: I have a html-form form id=my_form   input type=text   input type=submit id=submitBtn / /form and I want to set a custom handler on a form submit event  in my GWT application. I tried to use 1)

Re: Possible Newbie Question: How do I use a shared model in a GWT app?

2009-10-30 Thread Eric
OK, I figured it out. I'll just report back here in case anyone else stumbles across this. I added the following line to my MyApp.get.xml file: inherits name=com.my.company.Shared / Then I created the file src/com/my/company.Shared.gwt.xml with the contents: ?xml version=1.0 encoding=UTF-8?

Parse XML like a Tutorial

2009-10-30 Thread SkiD
Hello everybody, i want to parse a xml at the top of my entry-point-method like that tutorial: http://groups.google.com/group/Google-Web-Toolkit/msg/a6f399bc4d46f795 (Look at Processing XML with GWT) I've created a xml in the client package, but the complier says he cannot parse the xml-file. I

Can you recommend a java web framework for GWT-RPC mechanism?

2009-10-30 Thread yek...@gmail.com
Hi all, I want to use gwt-rpc mechanism, but not to invent the world again. What are you using for session, user management and other stuff that simplifies your server side code. I have only found code for spring-mvc , I found it too complex, I need a simple but powerfull solution, not an

Re: Anyone using soafaces for client server communication ?

2009-10-30 Thread mike_mac
On further investigation this seems to be a hosted mode issue and different behaviour of instanceof between hosted mode and complied versions of the code. Passing an Object[] called obj that has two objects that implement IsSerializable results in obj instanceof Serializable returning true in

Sorting cols in the PagingScrollTable...

2009-10-30 Thread P.G.Taboada
I am happy with the PagingScrollTable, created an abstraction layer ontop of the api, just adding features to my abstraction layer as I dig deeper into the incubator code. My TableModel is extending the MutableTableModel and using GWT- Dispatch to retrieve the data - not fun getting there, but

Re: Which GWT widget toolkit is better?

2009-10-30 Thread Kango_V
If it's a larger project like the one we are working on, you'll these: gwt 2.0 guice (server side) gin (client side) gwt-presenter gwt-dispatch gwt-log There are some great examples on how to tie this together into a great best practive framework. Good luck :) On Oct 30, 6:55 pm, maratkalibek

Re: float exception message to client fix does not work

2009-10-30 Thread bhomass
I apologize. It works. the mistake was else where. --~--~-~--~~~---~--~~ 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-toolkit@googlegroups.com To unsubscribe

Re: Which GWT widget toolkit is better?

2009-10-30 Thread brancoch
In our project, we are using the following: 1. Persistence with Hibernate through JPA. However, my preference is OpenJPA, Kodo (same as OpenJPA but commercial), Toplink (in this order) since they have more configuration features for performance. I have done a proof concept of OpenJPA using

Re: New Blank Project, Empty Project for Eclipse

2009-10-30 Thread ARGold
Thank you Ian. --~--~-~--~~~---~--~~ 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-toolkit@googlegroups.com To unsubscribe from this group, send email to

Re: ryan best prastice gwt

2009-10-30 Thread asianCoolz
i know there existing 2 projects that currently using ryan implementation, and now i confusing which one to choose.. lol --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Can you get the compiler to list the permutations?

2009-10-30 Thread Sripathi Krishnan
We are using all the modules except the GwtExt ones, and are able to get down to a single permutation - so it is likely that the permutations are caused by something over there. You could try opening up the .gwt.xml for the GWT EXT modules and see if they have any replace-with statements. That

Re: Annotate method/constructor as not serializable for RPC

2009-10-30 Thread Sripathi Krishnan
Its been discussed before - see this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/59b179bfbc9b718/3a21e6b0d450a787?lnk=gstq=%40Server+Only+annotation#3a21e6b0d450a787 --Sri 2009/10/30 Open eSignForms yoz...@gmail.com I have checked around and cannot find

Re: GWT UI to image using Java / GWT

2009-10-30 Thread Sripathi Krishnan
You can't do it using pure javascript, and hence you can't do it in GWT. You would need some kind of plugin support - activex, flash, applet or something related - and is beyond the scope of gwt. --Sri 2009/10/30 Arthik Babu arthikb...@gmail.com Hi, I have a requirement to convert a

Re: Debugging in Eclipse doesn't work

2009-10-30 Thread Brian Park
sweet! this solves my problem, too. thanks a lot. On Oct 28, 5:28 am, Youngster aecdej...@gmail.com wrote: I had the same problem. Install the newst JDK fromhttp://www.java.com/en/download/manual.jspand it will be solved. On Oct 28, 4:42 am,BrianParkyar...@gmail.com wrote: Hi, I'm

remote login in windows

2009-10-30 Thread sathya
How can I remote login in windows system with known username and password --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

setCellHeight issue...

2009-10-30 Thread golfdude
gwt 1.7... I have a VerticalPanel ( or DockPanel ) in my RootPanel, and have 3 widgets ( north, center, south ). I have a tab panel as my center. If I assign the center widget setCellHeight(center, 100% ), then the bottom border of the tab panel is not visible. Also after that I cannot scroll

[gwt-contrib] Fix a daylight saving bug

2009-10-30 Thread rice
Reviewers: jlabanca, jat, Description: Calling new Date(...) with a time that falls in the 'missing hour' of a daylight savings time transition currently behaves differently in java versus javascript. In java, the time is moved forward by an hour, while in javascript it is moved backward, which

[gwt-contrib] Re: Fix a daylight saving bug

2009-10-30 Thread jlabanca
We should have unit tests for all of these cases, testing DST going in both directions (spring and fall). LGTM pending unit tests http://gwt-code-reviews.appspot.com/90802 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Code Review Request: Addition of clientId and initialization message for the RemoteUI

2009-10-30 Thread mmendez
LGTM - please run ant checkstyle before committing. Also, cherrypick into the 2.0 branch. On 2009/10/30 16:23:34, rdayal wrote: http://gwt-code-reviews.appspot.com/89809 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix a daylight saving bug

2009-10-30 Thread דניאל רייס
I'm not sure how to so this -- my testing involved manually setting the machine's time zone. Ultimately the bug is in the fact that the native Javascript Date functions deal with the missing hour differently that Java's Date class, and I don't know that I can coerce the Javascript functions

[gwt-contrib] Re: Fix a daylight saving bug

2009-10-30 Thread Bruce Johnson
If you're confident in the fix, Dan, instead of adding a test right now, please just add an issue instead to remind us to review in the future what kind of testing mechanism we would have needed to make a unit test easy to create for this case. I want to make sure we revisit this at some point to

[gwt-contrib] [google-web-toolkit] r6558 committed - Merge of trunk 6458:6459, fix for CssProperty space bug on IE

2009-10-30 Thread codesite-noreply
Revision: 6558 Author: fabb...@google.com Date: Fri Oct 30 10:59:29 2009 Log: Merge of trunk 6458:6459, fix for CssProperty space bug on IE http://code.google.com/p/google-web-toolkit/source/detail?r=6558 Modified:

[gwt-contrib] Re: Server side I18N

2009-10-30 Thread Chris
Thobias, Since this doesn't involve changes to GWT proper, have you thought about creating a google code project. I'm sure there are others who would like to use what you have created. And who knows, one day it might be included in GWT proper. Thanks, Chris On Oct 21, 5:14 pm, Thoka

[gwt-contrib] [google-web-toolkit] r6560 committed - Svn prop changes from merge, to get them out of my face.

2009-10-30 Thread codesite-noreply
Revision: 6560 Author: fabb...@google.com Date: Fri Oct 30 11:05:12 2009 Log: Svn prop changes from merge, to get them out of my face. http://code.google.com/p/google-web-toolkit/source/detail?r=6560 Modified: /branches/snapshot-2009.10.23-r6446

[gwt-contrib] Re: Code Review Request: Addition of clientId and initialization message for the RemoteUI

2009-10-30 Thread rdayal
Thanks. http://gwt-code-reviews.appspot.com/89809 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Code Review Request: Addition of clientId and initialization message for the RemoteUI

2009-10-30 Thread rdayal
Thanks. http://gwt-code-reviews.appspot.com/89809 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Code Review Request: Addition of clientId and initialization message for the RemoteUI

2009-10-30 Thread rdayal
On 2009/10/30 18:09:39, rdayal wrote: Thanks. Checkstyle/build run without a problem. Committed as r6559. Cherry-picked into 2.0 at r6561. http://gwt-code-reviews.appspot.com/89809 --~--~-~--~~~---~--~~

[gwt-contrib] [google-web-toolkit] r6562 committed - Updated branch info to reflect the merge at r6561.

2009-10-30 Thread codesite-noreply
Revision: 6562 Author: rda...@google.com Date: Fri Oct 30 11:09:22 2009 Log: Updated branch info to reflect the merge at r6561. http://code.google.com/p/google-web-toolkit/source/detail?r=6562 Modified: /releases/2.0/branch-info.txt === ---

[gwt-contrib] [google-web-toolkit] r6563 committed - Merge r6470, Fix for issue 3374. This patch adds overloads of ...

2009-10-30 Thread codesite-noreply
Revision: 6563 Author: fabb...@google.com Date: Fri Oct 30 11:26:38 2009 Log: Merge r6470, Fix for issue 3374. This patch adds overloads of encodeComponent and decodeComponent to deal differently with spaces (keeping them as %20 rather than replacing them with +) and therefore allow their use for

[gwt-contrib] Re: Fix a daylight saving bug

2009-10-30 Thread John Tamplin
On Fri, Oct 30, 2009 at 1:31 PM, Bruce Johnson br...@google.com wrote: If you're confident in the fix, Dan, instead of adding a test right now, please just add an issue instead to remind us to review in the future what kind of testing mechanism we would have needed to make a unit test easy to

[gwt-contrib] [google-web-toolkit] r6564 committed - Fixes script permissions, see http://gwt-code-reviews.appspot.com/8980...

2009-10-30 Thread codesite-noreply
Revision: 6564 Author: fabb...@google.com Date: Fri Oct 30 12:00:05 2009 Log: Fixes script permissions, see http://gwt-code-reviews.appspot.com/89805. Review by: scottb Issue: 4718 http://code.google.com/p/google-web-toolkit/source/detail?r=6564 Modified: /trunk/distro-source/build.xml

[gwt-contrib] [google-web-toolkit] r6565 committed - Merge r6470, This allows multiple source files to be specified for a ...

2009-10-30 Thread codesite-noreply
Revision: 6565 Author: fabb...@google.com Date: Fri Oct 30 12:02:11 2009 Log: Merge r6470, This allows multiple source files to be specified for a ui:style, just like any other CssResource. It also allows you to put body text on a ui:style that has sources. The body becomes just one more source

[gwt-contrib] [google-web-toolkit] r6566 committed - Improve the error message for 'GWT.create(UiBInder.class)'...

2009-10-30 Thread codesite-noreply
Revision: 6566 Author: r...@google.com Date: Fri Oct 30 12:10:56 2009 Log: Improve the error message for 'GWT.create(UiBInder.class)' (as opposed to a subclass of UiBinder). Review by: rjrjr http://code.google.com/p/google-web-toolkit/source/detail?r=6566 Modified:

[gwt-contrib] [google-web-toolkit] r6567 committed - Merged r6564, fix script permissions for *Creator and benchmarkViewer

2009-10-30 Thread codesite-noreply
Revision: 6567 Author: fabb...@google.com Date: Fri Oct 30 13:01:57 2009 Log: Merged r6564, fix script permissions for *Creator and benchmarkViewer http://code.google.com/p/google-web-toolkit/source/detail?r=6567 Modified: /releases/2.0/branch-info.txt /releases/2.0/distro-source/build.xml

[gwt-contrib] [google-web-toolkit] r6568 committed - Merge 6481, Just remembered that MenuItemParser has support for the ol...

2009-10-30 Thread codesite-noreply
Revision: 6568 Author: fabb...@google.com Date: Fri Oct 30 13:26:53 2009 Log: Merge 6481, Just remembered that MenuItemParser has support for the old phantom MenuItemHTML child, which I killed off like a year ago. Getting rid of that support drastically simplifies the class. It also revealed a

[gwt-contrib] [google-web-toolkit] r6569 committed - Adds patch to JsStaticEval to simplify literal1 + literal2 operations....

2009-10-30 Thread codesite-noreply
Revision: 6569 Author: cromwellian Date: Fri Oct 30 14:23:53 2009 Log: Adds patch to JsStaticEval to simplify literal1 + literal2 operations. (where literal can be one of: null, boolean, number, string) Patch by: cromwellian Review by: bobv

[gwt-contrib] [google-web-toolkit] r6570 committed - Reverting r6456 because it was causing JUnitShell to wait indefinitely...

2009-10-30 Thread codesite-noreply
Revision: 6570 Author: jlaba...@google.com Date: Fri Oct 30 14:27:25 2009 Log: Reverting r6456 because it was causing JUnitShell to wait indefinitely for tests to finish. Since BrowserManagerServer can run tests in parallel (which it does by default), there is no need for this option. Patch

[gwt-contrib] [google-web-toolkit] r6571 committed - tr...@6570 was merged into this branch...

2009-10-30 Thread codesite-noreply
Revision: 6571 Author: jlaba...@google.com Date: Fri Oct 30 14:33:17 2009 Log: tr...@6570 was merged into this branch Revert r6456 because it was causing JUnitShell to wait indefinitely. svn merge --ignore-ancestry -c 6570 http://google-web-toolkit.googlecode.com/svn/trunk/ . Patch by:

  1   2   >