Re: Help: Development of large App with GWT

2010-10-06 Thread 007Prog
Hi Noor, to reply this question, we need someone who has been using GWT for quite long. About the application you are trying to implement, I'm still trying to figure out what type of application of recommend you. I think you can try real time web application. What do you think guys? -- You

Re: Comet help about code

2010-10-06 Thread Y2i
This code is not specific to Commet, it simply uses Java foreach loop to iterate through Map's key-value entries. For each entry it takes a value and calls one of its methods. http://download.oracle.com/javase/1.5.0/docs/guide/language/foreach.html

Re: Calling java from external javascript

2010-10-06 Thread Boris Lenzinger
Thank you for your answer. This part (calling js from java) is working fine. But my problem is calling generated javascript from hand written javascript... The export trick (see MyUtilityClass) does not seem to expose javamethods to hand written javascript. How can I call my java code from je

Re: Comet help about code

2010-10-06 Thread Cristiano
Hi All, this is my pattern of how I implement comet. I may change how I handle the ArrayListMessage or use a timestamp as parameter of get method, but basically I always start from this simple snippet of code. It's for GWT but I've basically used it also in a Web Service and in a REST service.

Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thanks for your kid reply. It would be great if you can send me code snippet of using appengine to send mail. King regards Naveen On Oct 5, 12:49 am, nacho vela.igna...@gmail.com wrote: You can use appengine to deploy your app and use the appengine mail api. On 4 oct, 09:41, Jeff Chimene

Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thank you for your kind reply. I will look in to it. On Oct 4, 5:41 pm, Jeff Chimene jchim...@gmail.com wrote: Since you want the recipient address hidden, you cannot use GWT[1]. You'll have to send a request to the server and have it compose and send the email. [1] Otherwise, you'd use a

Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thank you for your kind reply. I will look in to it. On Oct 4, 12:03 pm, abhiram wuntakal abhir...@gmail.com wrote: The simplest way to do this would be, Create a front end page with the neccesary stuff like Recipient's id, Subject Title, Mail Body and send all this data to the server side

Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thank you for your kind reply. I will look in to it. On Oct 4, 11:44 am, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: i think GWT will be an overkill for this work. I would just use a  HTML form and submit to a PHP/Perl/Ruby script for sending the mail out from the server. However if u

Re: Calling java from external javascript

2010-10-06 Thread Y2i
May be you missed the signature? [instance-ex...@package.classname::methodeName(signature)(parameters) On Oct 6, 12:04 am, Boris Lenzinger boris.lenzin...@gmail.com wrote: Thank you for your answer. This part (calling js from java) is working fine. But my problem is calling generated

Re: Help: Development of large App with GWT

2010-10-06 Thread Noor
Yes, if someone can help me then it would be great!! -- 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

JsonpRequestBuilder and HTTPS Problem

2010-10-06 Thread Lukasz
Hi, After successfully implementing a JSONP callback, I changed it to use an https url and noticed that it doesn't work. The server doesn't receive the request and GWT shows only a timeout error. The server side is proper configured, cause when trying the same url in the browser, I get the

Spring 3.0 + GWT 2.0 integration

2010-10-06 Thread aces2805
Hi, is there any other way of integrating Spring 3.0 and GWT 2.0 using the spring dispatcher, I'm using the MVP pattern by the way. Really appreciate any help thanks. Hope I can get some samples and references guys ^^ -- You received this message because you are subscribed to the Google Groups

Re: Calling java from external javascript

2010-10-06 Thread Boris Lenzinger
Thank you for your suggestions. At last I found what was wrong (well I found a way to make it work :-) ) First, the call to the method in the onclick was not good. It was defining an inline function instead of calling directly the variable that was exported by the MyUtilityClass. button.onclick

Help for testing GWT.UncaughtExceptionHandler within a JUnit GWTTestCase

2010-10-06 Thread Didier DURAND
Hello, To improve the coverage of my automated tests, I'd like to test my own GWT.UncaughtExceptionHandler within a GWTTestCase to see if it functions correctly. I can't do it for now: the JUnit test always fails. Can you help me an let me know what's wrong in my code below ? (I tried to use an

Re: Resolution specific size of panels / widgets

2010-10-06 Thread Deepak Singh
Hi Thomas, Thanks for your reply. Could you pls explain a bit how to use LayoutPanel instead of AbsolutePanel which i am using right now. I did not find any good example on LayoutPanel. On Wed, Oct 6, 2010 at 3:49 AM, Thomas Broyer t.bro...@gmail.com wrote: On 5 oct, 23:02, Deepak Singh

Re: Help for testing GWT.UncaughtExceptionHandler within a JUnit GWTTestCase

2010-10-06 Thread Thomas Broyer
On Oct 6, 11:02 am, Didier DURAND durand.did...@gmail.com wrote: Hello, To improve the coverage of my automated tests, I'd like to test my own GWT.UncaughtExceptionHandler within a GWTTestCase to see if it functions correctly. I can't do it for now: the JUnit test always fails. Can you

Table rendering issue in ie7

2010-10-06 Thread nirav patani
I am facing timing issues for ie7. i have a flextable and text is added to it by using Label widget. this works fine in ie8 and firefox but with ie7 it is very slow. i guess its i due to rendering delay of table in ie7. One soultion would be to use inner html instead of widgets for table cells .

How to merge 2 projects into 1?

2010-10-06 Thread newnoise
Hi all, I created two projects with GWT and Eclipse-Plugin. Because both projects have a completly different client-side code, but also completly the same server-side code, I want to combine them to avoid having the same code twice. What I did was to link the project without the server-side code

Re: JsonpRequestBuilder and HTTPS Problem

2010-10-06 Thread Thomas Broyer
On Oct 6, 10:31 am, Lukasz l.plotni...@googlemail.com wrote: Hi, After successfully implementing a JSONP callback, I changed it to use an https url and noticed that it doesn't work. The server doesn't receive the request and GWT shows only a timeout error. The server side is proper

Re: Help: Development of large App with GWT

2010-10-06 Thread Thomas Broyer
On Oct 6, 5:42 am, Noor baken...@gmail.com wrote: Thus, if we resume, GWT helps more in the development phase of software development. The end result is similar to the client as development with any other framework. Well, to sum up, yes. There are 2 main differences though: - GWT generates

Re: Advice for site design

2010-10-06 Thread Thomas Broyer
On Oct 5, 11:45 pm, nick kov nickko...@gmail.com wrote: I'm creating a site which will have a sign up screen, a login system, and then interaction with the site once you login. My question is, can I mix GWT with PHP in a healthy manner? I don't know how well GWT handles client-server

Re: 2 Questions: getOffsetHeight ignores margin C ssResource doesn´t include css property

2010-10-06 Thread Thomas Broyer
On Oct 6, 6:17 am, Sandler smike...@gmail.com wrote: Hi guys, i´ve got 2 questions. I´m using getOffsetHeight to get the height of an Widget. This works fine, but when i adding a css margin to the widget, the css-property seems to be ignored. The doc says: This is the total width of the

Re: Advice for site design

2010-10-06 Thread Georg Sendt
You can use REST. Create some PHP-REST services and use them on the GWT site. There are some amazing apps develop with PHP backend and GWT frontend. For example: http://demo.qualityunit.com/pax4/merchants/login.php#login Regards, Georg On 5 Okt., 23:45, nick kov nickko...@gmail.com wrote:

Re: JsonpRequestBuilder and HTTPS Problem

2010-10-06 Thread Lukasz
Thanks for the quick answer. As I'm testing the code on my dev. workstation the certificate is self-signed - I'll try to check the browser config. Regarding the erros: no, neither the browser or eclipse-console show any errors. On Oct 6, 12:21 pm, Thomas Broyer t.bro...@gmail.com wrote: On Oct

Re: CellTable and Paging question

2010-10-06 Thread Maurice
Great, thanks! Maurice On Oct 5, 2:43 pm, Thomas Broyer t.bro...@gmail.com wrote: On Oct 5, 12:28 pm, Maurice maurice.ocon...@gmail.com wrote: Hi, I have a CellTable with a SimplePager. When I click forward on the SimplePager widget, it flicks through the pages as you'd expect.

Re: Spring 3.0 + GWT 2.0 integration

2010-10-06 Thread lalit
Check this http://www.lalitbhatt.com/tiki-index.php?page=Integration+GWT+with+Spring Also there was a recent thread going on for the same. you might want to look into that also.

Re: Advice for site design

2010-10-06 Thread RPB
Here is my site, similar to what you describe, built with a PHP backend and GWT frontend: http://www.yournextfilm.com Haven't had any problems building in this way. GWT deals with cross browser compatibility and communicates with PHP (-MySQL) via REST. I wouldn't use pure PHP with no GWT at all!

Re: time selection widget?

2010-10-06 Thread ctasada
Hi Vik, If what you're looking for is a spinner widget, there's either any in the GWT default library. As I said before you will need to do it yourself :( On Oct 5, 3:47 pm, Vik vik@gmail.com wrote: hie thanks just for a single widget i dont want to use whole library so i was

Re: Help: Development of large App with GWT

2010-10-06 Thread Noor
ya, I was also thinking about this, as 007Prog said previously, the new trend for RIA is real-time RIA!! -- 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

Re: Help: Development of large App with GWT

2010-10-06 Thread Noor
U know, well to start with my dissertation, I have quite a lot concerning GWT, well not that as u as u people are in industry and have on hand experience with GWT According to me, GWT is best suited for distributed application for company network but not for the Internet, Don't u think so?? I

Re: GWT Designer for Eclipse 3.6 - Install Fails

2010-10-06 Thread Eric Clayberg
The update site bits are fine on our end, so I would recommend trying it again with a new, clean Eclipse installation. You should also check that that nothing is interfering with your Internet connection (like a local proxy). The Eclipse update manager can be quite fragile and sensitive to

Re: 2 Questions: getOffsetHeight ignores margin C ssResource doesn´t include css property

2010-10-06 Thread bconoly
I thought that getClientHeight took margin, padding and border into account while offset didn't. You may want to try that. I'm unfortunately not sure of the second question. On Oct 6, 12:17 am, Sandler smike...@gmail.com wrote: Hi guys, i´ve got 2 questions. I´m using getOffsetHeight to get

Re: How to merge 2 projects into 1?

2010-10-06 Thread bconoly
In order to get it to work you need to build the source jars of both client side apps and add them as a dependency to your gwt build. I use maven so this is pretty easy but I'm unsure how to do it with ant. Once you have this included you need to make sure that your gwt.xml files have the code

Problem: Importing the GWT Subversion Trunk into Eclipse

2010-10-06 Thread Esfand
Following the instructions for importing the GWT source-code into Eclipse, when I try to set the User module as a source-code dependency in any of the provided samples, I get the following error messages: Loading modules com.google.gwt.sample.hello.Hello Loading inherited module

Orkut-like profile photo cropping

2010-10-06 Thread LittleWaver
Hello everyone, I'm new to this group, so please excuse me, if this isn't the right place to post my question to. Situation: I'm trying to implement a component, that will enable cropping of photo that user wants to set as his profile photo. e.g. User has a nice photo from some team building

Help needed to refresh the panel contents...

2010-10-06 Thread Siva
hi, I'm siva. A beginner to GWT and UI development.Please help in the following scenario... I'm having navigation panel and a main panel (both are ContentPanels). I've few images in the navigation panel. when i'm clicking one among them i want to change the center panel contents. For eg. when

Gwt test with gwt widget instantiation within a presenter

2010-10-06 Thread ritzyw
I have a presenter which binds to a view based on a certain logic. So this view gets instantiated from within a presenter. like if (true) { new viewOne } else { new view Two } so how do I test the logic for whether the right view is being instantiated or not. views are Gwt widgets where as

Re: Advice for site design

2010-10-06 Thread ricu
I suggest you to go with pure GWT and JAVA backend. I tried to work with PHP backend on one of my project and after a few months I realized that JAVA backend is much much simpler to use with GWT. With JAVA you are equipped with full stack needed to build web app - SPRING, HIBERNATE, GILEAD... On

Re: GWT Designer for Eclipse 3.6 - Install Fails

2010-10-06 Thread gina
It might be a proxy issue. See... http://forums.instantiations.com/viewtopic.php?f=1t=5356start=0 On Oct 5, 9:28 am, tinnitus007 tinnitus...@gmail.com wrote: I have tried w/ Eclipse 3.6; 3.6sr1; for J2EE RCP. With and without GWT Eclipse Plugin installed prior (GEP install succeeds).

Needed Education And Server Access

2010-10-06 Thread Andrew Witherspoon
Hi, I just installed the GWT and on my pc things work ok. Once I ftp's the war folder to my server, it told me that it could not connect to the server. Please tell me what I'm doing wrong. Also, I am familiar with Java, don't know ajax but would still like to use the GWT, is it unlikely to

Invoke a GWT Widget from JSP Page

2010-10-06 Thread Salil
Hi, I have a JSP page which consists of a textarea and few buttons. I want to reuse an existing GWT widget which consists of a TextBox and a clickable icon and place it inside the JSP Page. Kindly let me know what all is required to be done. Regards, Salil -- You received this message

GWT Entry point Configuration

2010-10-06 Thread Arun
Hi I have to create one login module using GWT with RPC with the functionality of login, registration and forgotPassword. Login is working fine. Now i have to proceed for registration and forgot password but i have in trouble to configure entry point. In my login page i have created hyperlink

Re: Help: Development of large App with GWT

2010-10-06 Thread Thomas Broyer
On Oct 6, 2:05 pm, Noor baken...@gmail.com wrote: U know, well to start with my dissertation, I have quite a lot concerning GWT, well not that as u as u people are in industry and have on hand experience with GWT According to me, GWT is best suited for distributed application for company

GWT compiling Java classes into JavaScript with super-source Double.doubleToLongBits problem

2010-10-06 Thread jsmith
Hi everyone. I want to use a lot of code from a previous project and i am building a subset of the jre which GWT cannot compile with just stubs and include it with super-source. Its quit alot of work and now i am stuck with the problem that the code of the old project has methods in it like

Re: Help: Development of large App with GWT

2010-10-06 Thread 007Prog
Then, I'm in a real mess. I have not yet though a type of application that I will develop with GWT!!! -- 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

Unable to use GWT Dev Ext 1.0.7511 for FireFox 3.6.10 on 64bit SUSE 11.3

2010-10-06 Thread Alec
The add-on gets successfully installed. Having restarted FireFox, I select Tools - Add-ons, and it is found in the Add-ons window. The attempt to use the dev URL, http://127.0.0.1:/desktop.html?gwt.codesvr=127.0.0.1:9997 , prompts for a new installation. Please help if you can. Thanks,

Re: Calling java from external javascript

2010-10-06 Thread Yau
Officially, you can refer to the following. Quoted from http://code.google.com/support/bin/answer.py?hl=enanswer=75695 How can I call one of my GWT Java methods from my application host page?Share Comment Print In order to accomplish this, you'll first need to create a JSNI method that creates a

Re: GWT-Platform with GWT 2.1

2010-10-06 Thread Travis Camechis
How stable is the trunk version? Thinking about building it from scratch at least until .5 so I can begin taking advantage of the spring features. On Tue, Oct 5, 2010 at 12:28 PM, Philippe Beaudoin philippe.beaud...@gmail.com wrote: Spring support is planned for release 0.5 (e.t.a. early

Problem with call Window.open inside AsyncCallback.onSuccess for IE

2010-10-06 Thread Andrey H.
Hi All! I have strange problem: When I call Window.open function(servlet, which return file for download) inside AsyncCallback.onSuccess, then new tab opens and immediately closed, the file isn't downloaded. For Fierfox it's work fine, for IE - bad. This part of code: new

Re: GWT-Platform with GWT 2.1

2010-10-06 Thread Christian Goudreau
You should take a look at the CI builds instead, they are already build from trunk. As soon that spring feature will be in trunk, our automatic CI server will build the project for you. ContinuousIntegration https://code.google.com/p/gwt-platform/wiki/ContinuousIntegration Cheers, On Wed, Oct

Re: Help: Development of large App with GWT

2010-10-06 Thread Noor
Well, I'm still in a confusion about the application which I can develop to evaluate GWT!!! -- 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

Re: Gzip'ing nocache file causes IE 6 to fail to load

2010-10-06 Thread jhulford
On Oct 5, 10:35 am, Thomas Broyer t.bro...@gmail.com wrote: Bug bug bug! Google for gzip js ie6 One of the results:http://sebduggan.com/posts/ie6-gzip-bug-solved-using-isapi-rewrite Argh!! IE 6..just die already! Thanks, Thomas. I had a feeling that was likely the case, but I didn't find

Re: JsonpRequestBuilder and HTTPS Problem

2010-10-06 Thread Lukasz
Final update: everything works fine if the browser accepted the self- signed certificate - without this step, the JSONPReguest just won't work. To ensure this, I just called the request url by hand in the browser and accepted the certificate. On 6 Okt., 12:51, Lukasz l.plotni...@googlemail.com

RE: Help: Development of large App with GWT

2010-10-06 Thread Armishev, Sergey
From my experience compare javascript and GWT 1.Development. Extremely fast. One language (if you use Java on server side). Huge amount of open sourced libraries and extensions 2.GWT. Easy to support and test. More Java developers available for Java then javascript 3.Porting from legacy apps. Try

Re: GWT-Platform with GWT 2.1

2010-10-06 Thread Travis Camechis
good point. I forgot about the CI server. On Wed, Oct 6, 2010 at 10:29 AM, Christian Goudreau goudreau.christ...@gmail.com wrote: You should take a look at the CI builds instead, they are already build from trunk. As soon that spring feature will be in trunk, our automatic CI server will

Re: Calling java from external javascript

2010-10-06 Thread Boris Lenzinger
This is great ! It is working perfectly ! Thank you for pointing this out to me !! 2010/10/6 Yau kvle...@gmail.com Officially, you can refer to the following. Quoted from http://code.google.com/support/bin/answer.py?hl=enanswer=75695 How can I call one of my GWT Java methods from my

Unable to create GWT project in Eclipse Helios

2010-10-06 Thread TBirch
I have no problems creating a GWT project in an older version of eclipse i. e. Version: 3.5.0 however I am unable to create a new GWT project in Helios. 1. I downloaded and installed GWT 2.04, eclipse Helios, and the GWT eclipse plugin for Helios. 2. I click on the GWT New ApplicationProject

Re: GWT-Platform with GWT 2.1

2010-10-06 Thread Philippe Beaudoin
Latest features are not super stable. (We plan a change in ClientActionHandler's API soon.) But the bulk of it is fairly stable. We use the trunk in production. Philippe On Wed, Oct 6, 2010 at 7:55 AM, Travis Camechis camec...@gmail.com wrote: good point.  I forgot about the CI server. On

Re: GWT-Platform with GWT 2.1

2010-10-06 Thread Travis Camechis
Good to know. On Wed, Oct 6, 2010 at 11:07 AM, Philippe Beaudoin philippe.beaud...@gmail.com wrote: Latest features are not super stable. (We plan a change in ClientActionHandler's API soon.) But the bulk of it is fairly stable. We use the trunk in production. Philippe On Wed, Oct 6,

Re: Advice for site design

2010-10-06 Thread nick kov
thanks for all the advice, that helped a lot. -- 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: Spring 3.0 + GWT 2.0 integration

2010-10-06 Thread aces2805
Thanks paul, I really appreciate it ... it was very useful ... by the way I hope it isn't too much to ask, but do you have any references also for spring security intgrated to GWT ... many thanks. On Oct 6, 5:13 pm, Paul Grenyer paul.gren...@gmail.com wrote: Hi On Wed, Oct 6, 2010 at 9:36 AM,

Re: Spring 3.0 + GWT 2.0 integration

2010-10-06 Thread Paul Grenyer
Hi Glad it was useful! I haven't got around to writing up spring security integration yet, but have a look here for ideas: paulgrenyer.net/svn/public/gxtspringsecurity/trunk/GxtSpringSecurity/ Feel free to ask any questions. Paul -Original Message- From: aces2805 ace...@gmail.com

Using subtypes of AsyncCallBack

2010-10-06 Thread mike b
I'm using GWT 2.0.4. Referring to this old post... http://groups.google.com/group/google-web-toolkit/msg/04f657bcf482ba28 Does anyone know if it possible yet to implement subtypes of the interface and/or classes ?? If so, how? That would be a great improvement for Enterprise level

Re: Help: Development of large App with GWT

2010-10-06 Thread Noor
Well guys, thanks lot for your help. I think I will be going with a bidding system itself in which I will try to exploit GWT at most. regards Noor -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

When is 2.1.M4 / 2.1 rc release date?

2010-10-06 Thread nalf
Is this scheduled for October 8th? Can someone post a link to the schedule page, please. -- 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

Set up of GWT site

2010-10-06 Thread nick kov
This question is for the developers that are more experienced with GWT. I am wondering exactly how you set a site up in terms of navigation? For example with HTML I would naturally use links to travel between pages, etc. But with GWT, if somebody clicks on a link on your site, do you guys just

Who's my parent?

2010-10-06 Thread Brian
Based on the fun yesterday with HTMLPanels, I found this oddity with setting an element as a child in html, then getting that element's parent: HTMLPanel hp = new HTMLPanel(div id='abc'/div); Label l = new Label(hi); hp.add(l, abc); Widget w = l.getParent(); RootPanel.get(block).add(hp); Run

Re: Set up of GWT site

2010-10-06 Thread Brian
Generally in a gwt app, all links stay within your application (all within the same html page). The links are just tokens that are handled by your single app (which is hosted in one page). In 100% pseudo code, you'd have something like: whenHistoryChanged(token){ if (token.equals(about)){

Re: Who's my parent?

2010-10-06 Thread Falcon
That code gives you something like: div !-- HTMLPanel widget -- div id='abc' divhi/div !-- Label widget -- /div /div with the GWT classes sprinkled on to keep track of the widgets, of course. The HTML div with hi has div#abc as its parent element. The GWT Label's (which is a

Re: Who's my parent?

2010-10-06 Thread Brian
Nice, ok. So to affect the 'abc' div's style, I could walk up the elements from the label: l.getElement().getParentElement().getStyle() Is this difference between HTML vs Widget parent/child relationship the same 'physical vs logical' relationship I see mentioned in the docs, for instance, in

Re: GWT DESIGNER NOT WORKING WITH GWT SDK 2.0.4

2010-10-06 Thread Alessio unibs
Hi, i solved the problem by installing e clean version of eclipse 3.6 Helios; now the plug in run correctly. On 24 Set, 10:24, Alessio unibs cecchia...@libero.it wrote: Hi guys, i downloaded also the sdk GWT 2.0.4 and i imported that instead the one included in gwt eclipse plugin, but watching

REQUEST BUILDER + JSON OBJECT + PHP SERVER SIDE LANGUAGE

2010-10-06 Thread Alessio unibs
Hi, i have problem by using gwt requestbuilder to make http request with json object in body messages. In the server side code, i use php, but when i try to access request's data, the $_POST variable is empty. I post the code below: String path = GWT.getHostPageBaseURL() + JsonObjectReceiver.php;

Re: Who's my parent?

2010-10-06 Thread Falcon
Yes. You could have a widget physically attached to the DOM (as in actually inserted into the HTML page) without doing the necessary steps to have it logically attached in the Widget hierarchy. For instance, if you did something like DivElement div = Document.get.createDivElement(); Label l =

Re: Who's my parent?

2010-10-06 Thread Falcon
(That should be Document.get().createDivElement()) On Oct 6, 4:03 pm, Falcon msu.fal...@gmail.com wrote: Yes. You could have a widget physically attached to the DOM (as in actually inserted into the HTML page) without doing the necessary steps to have it logically attached in the Widget

RE: Gwt test with gwt widget instantiation within a presenter

2010-10-06 Thread Feldman, Nir (48Upper)
You should decouple it (e.g. using a Factory design pattern for your view that will return the display). Once you do it you can mock the factory. -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of ritzyw Sent:

Re: Trouble in using jboss with GWT in dev mode ([ERROR] Unable to find 'xxxx.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?)

2010-10-06 Thread Sanjeev
I was able to resolve this, it was a classpath setup issue in eclipse. -- 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

New Showcase online!

2010-10-06 Thread Jambi
Hurray! There´s an updated showcase online ;) http://gwt.google.com/samples/Showcase/Showcase.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe

Re: When is 2.1.M4 / 2.1 rc release date?

2010-10-06 Thread Thomas Broyer
On 6 oct, 21:38, nalf flannanbr...@gmail.com wrote: Is this scheduled for October 8th? Originally, it was (see below), but I can say it'll be RC1 and it'll come... very soon! http://code.google.com/p/google-web-toolkit/source/detail?r=8954 (I think the tagging was too early, as there's been

Re: Who's my parent?

2010-10-06 Thread Thomas Broyer
On 6 oct, 21:58, Brian hibr...@gmail.com wrote: Based on the fun yesterday with HTMLPanels, I found this oddity with setting an element as a child in html, then getting that element's parent: HTMLPanel hp = new HTMLPanel(div id='abc'/div); Label l = new Label(hi); hp.add(l, abc); Widget

Re: When is 2.1.M4 / 2.1 rc release date?

2010-10-06 Thread Flan Brody
thanks Thomas On Wed, Oct 6, 2010 at 2:54 PM, Thomas Broyer t.bro...@gmail.com wrote: On 6 oct, 21:38, nalf flannanbr...@gmail.com wrote: Is this scheduled for October 8th? Originally, it was (see below), but I can say it'll be RC1 and it'll come... very soon!

Re: New Showcase online!

2010-10-06 Thread Brian
Who IS that guy about to hack Jimmy Carter with a light saber? On Oct 6, 5:54 pm, Jambi michael.lukaszc...@googlemail.com wrote: Hurray! There´s an updated showcase online ;) http://gwt.google.com/samples/Showcase/Showcase.html -- You received this message because you are subscribed to

Re: 2.1 Documentation

2010-10-06 Thread Chris Ramsdale
Aldo, we're still on track for a release in the Oct. timeframe. Is there some other aspect that makes it a poor choice? On Wed, Sep 29, 2010 at 3:11 PM, Aldo tumo...@gmail.com wrote: My only question is: when will GWT 2.1 M4 be available? And when will it be released (the GA)? It seems like

Setting height of an iframe in percent

2010-10-06 Thread hendrix.jason
Using GWT, I have placed a frame element (named frame) in a div that's in an HTMLPanel, that's inside of a ScrollPanel, that makes up the center element of a DockLayoutPanel. Setting the frame's height using frame.setHeight(99%) works ok for Chrome but not for IE or FF. In Chrome, the frame

Re: Minimalistic JPA in GWT 2.1.0.M3

2010-10-06 Thread Jin
Hi Yuri, That does sound painful! I would recommend using an EE container with a proper JPA implementation. I guess the first thing when moving to an EE container is to understand a bit about that platform. you can find out more about glassfish at https://glassfish.dev.java.net/. I've been

Re: Orkut-like profile photo cropping

2010-10-06 Thread jvictor
You can wrap jcrop with gwt. http://deepliquid.com/content/Jcrop.html On Oct 6, 9:15 pm, LittleWaver alfaomeg...@gmail.com wrote: Hello everyone, I'm new to this group, so please excuse me, if this isn't the right place to post my question to. Situation: I'm trying to implement a

Re: Minimalistic JPA in GWT 2.1.0.M3

2010-10-06 Thread Y2i
Thanks for your response Jin! I am going to move to EE container. Haven't decided yet which one, currently I am looking at Spring. I do like the fact that GWT team works closely with SpringRoo team, which is a good sign. I also like how Roo leverages AspectJ to generate a lot of boilerplate

Re: REQUEST BUILDER + JSON OBJECT + PHP SERVER SIDE LANGUAGE

2010-10-06 Thread andy stevko
Did you try public void *setRequestData*(java.lang.String requestData) On Wed, Oct 6, 2010 at 1:58 PM, Alessio unibs cecchia...@libero.it wrote: Hi, i have problem by using gwt requestbuilder to make http request with json object in body messages. In the server side code, i use php, but

Re: time selection widget?

2010-10-06 Thread Vik
Hie Ok thanks a lot... Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Wed, Oct 6, 2010 at 5:21 PM, ctasada ctas...@gmail.com wrote: Hi Vik, If what you're looking for is a spinner widget, there's either any in the GWT default library. As I said before you

[gwt-contrib] GWT Locale using the Browser's language preference

2010-10-06 Thread Bernie1953
I was looking at a way for a GWT application to use the Browser's language preference without having to either provide the parameter (locale=fr) on the URL or to add the metatag for the locale in the HTML. The solution is quite easy to implement as long as the GWT application is running within a

[gwt-contrib] DeRPC works with draftCompile, but not when optimized

2010-10-06 Thread stuckagain
I have a rather large codebase where we decided to tryout DeRPC for a request that was too complex for the standard RPC. Everything looked good until I removed the draftCompile switch. The RpcServlet serializes the response but the client fails with a Incompatible Remote Service. Is this a

[gwt-contrib] [google-web-toolkit] r8950 committed - Correct the servlet URL mapping in the LogExample sample

2010-10-06 Thread codesite-noreply
Revision: 8950 Author: zun...@google.com Date: Wed Oct 6 05:17:48 2010 Log: Correct the servlet URL mapping in the LogExample sample http://code.google.com/p/google-web-toolkit/source/detail?r=8950 Modified: /trunk/samples/logexample/war/WEB-INF/web.xml

[gwt-contrib] Updating the doc build file to include the new examples for Cells. Fixing the links in the assoc... (issue964801)

2010-10-06 Thread jlabanca
Reviewers: fabbott, Description: Updating the doc build file to include the new examples for Cells. Fixing the links in the associated JavaDoc. Please review this at http://gwt-code-reviews.appspot.com/964801/show Affected files: M doc/build.xml M

[gwt-contrib] Re: GWT Locale using the Browser's language preference

2010-10-06 Thread Thomas Broyer
On Oct 6, 2:24 pm, Bernie1953 swtbclem...@gmail.com wrote: I was looking at a way for a GWT application to use the Browser's language preference without having to either provide the parameter (locale=fr) on the URL or to add the metatag for the locale in the HTML. The solution is quite

[gwt-contrib] [google-web-toolkit] r8952 committed - Public: First take at GWT validation that actually validates on the c...

2010-10-06 Thread codesite-noreply
Revision: 8952 Author: ncha...@google.com Date: Wed Oct 6 06:53:06 2010 Log: Public: First take at GWT validation that actually validates on the client side. Review at http://gwt-code-reviews.appspot.com/863801 Review by: robertvaw...@google.com

[gwt-contrib] [google-web-toolkit] r8953 committed - Remove validation packagse from the GWT 2.1 branch....

2010-10-06 Thread codesite-noreply
Revision: 8953 Author: b...@google.com Date: Wed Oct 6 07:46:04 2010 Log: Remove validation packagse from the GWT 2.1 branch. Patch by: bobv Review by: rjrjr http://code.google.com/p/google-web-toolkit/source/detail?r=8953 Deleted: /releases/2.1/samples/validation

[gwt-contrib] [google-web-toolkit] r8954 committed - Creating 2.1.0-rc1

2010-10-06 Thread codesite-noreply
Revision: 8954 Author: p...@google.com Date: Wed Oct 6 11:13:08 2010 Log: Creating 2.1.0-rc1 http://code.google.com/p/google-web-toolkit/source/detail?r=8954 Added: /tags/2.1.0-rc1 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8956 committed - reduce -Xmx to 1G as it is enough for now and 32-bit Windows does not ...

2010-10-06 Thread codesite-noreply
Revision: 8956 Author: k...@google.com Date: Wed Oct 6 08:16:40 2010 Log: reduce -Xmx to 1G as it is enough for now and 32-bit Windows does not support -Xmx2G http://code.google.com/p/google-web-toolkit/source/detail?r=8956 Modified: /trunk/common.ant.xml

[gwt-contrib] Re: Adding examples for cell widgets and data providers. (issue955801)

2010-10-06 Thread jlabanca
committed as r8944. A follow on patch will fix the links in the JavaDoc. http://gwt-code-reviews.appspot.com/955801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Resolves ROO-1508 by requiring CompositeEditors to return a canonical component Editor instance ... (issue965801)

2010-10-06 Thread bobv
Reviewers: rjrjr, Description: Resolves ROO-1508 by requiring CompositeEditors to return a canonical component Editor instance for path traversal. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/965801/show Affected files: M

[gwt-contrib] Re: Resolves ROO-1508 by requiring CompositeEditors to return a canonical component Editor instance ... (issue965801)

2010-10-06 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/965801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >