How can I access a window object in hand written java script in GWT

2010-03-24 Thread Muthu
Hi, I have a java script that I use from a third party. I needed to do some modification and as part of that I need to access the window object. Whenever I say window.something I get an error saying window is not defined. Any idea?? Thanks, Muthu Shanmugam. -- You received this message

Re: Coding dynamic parts with GWT

2010-03-24 Thread Jochen Schnaidt
Thanks a lot. I will try it this way. -- 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: Server side: start independent Thread at deploy on server

2010-03-24 Thread piXi
1. I need this thread at server side not client. 2. I'm allready using RPC interface async etc. 3. But I dont know what is proper way to start socket server at Server side. Via Modulu or something like that On 23 mar., 18:05, dolcra...@gmail.com dolcra...@gmail.com wrote: I think you need to

Re: Server side: start independent Thread at deploy on server

2010-03-24 Thread rudolf michael
Server Push? check gwteventservice project, it has a Comet Servlet in order to keep the client and server connected. On Wed, Mar 24, 2010 at 9:27 AM, piXi slop...@gmail.com wrote: 1. I need this thread at server side not client. 2. I'm allready using RPC interface async etc. 3. But I dont

Re: Determining Permutation on Server

2010-03-24 Thread mmoossen
+1 great idea, i think caching has to be handled carefully but there should not be any stoppers. Michael On Mar 23, 5:15 pm, Nathan Wells nwwe...@gmail.com wrote: Ooo good point... but couldn't you just set caching headers on the result? I guess I'm not clear on the intricacies of how each

problem with GWT and maven

2010-03-24 Thread zizou84
hi i have started with my first maven gwt project(GWT 2.0) the first thing i have noticed is that the application generated by my maven plugin doesn't contain the server package or the web.xml file. my application works fine without rpc call but when i tryed to add rpc, i added the web.xml file

Re: Error while installing Google Plugin for (Fedora) Eclipse 3.5.1

2010-03-24 Thread Randell
On Mon, Mar 22, 2010 at 10:30 PM, Rajeev Dayal rda...@google.com wrote: HI Randell, Good point - do you mind filing an issue for this? Sure thing. How can I file an issue? I'd like to learn how since I'll probably be encountering a lot of issues. -- You received this message because you

gwt app partially loaded but user can interact

2010-03-24 Thread mariyan nenchev
Hi, I have gwt app that uses many images for its customization. I use sprites for most of the images, but there are about 10 images that are not in sprite. So if the connection with the server is slow theese images are loaded with little delay and my app is not rendered as it should be. Is it

working with a freelancer designer on a gwt project

2010-03-24 Thread dk
Hello everyone, I have been developing a gwt+grails application but I am not happy with the default widget styles and the overall site design. I want to hire a designer but he doesn't have a clue about java+eclipse+gwt +grails view are there anyone experienced with a similar situation? Any

Re: Server side: start independent Thread at deploy on server

2010-03-24 Thread piXi
I think I didnt explain well, so gwt client will only show data tables etc, gwt server will serve those data to client ( GWT RPC), this is showing part, server socket part will be in seperate thread and will communicate with agents that are writen in pure java, not gwt. I allready got

Re: Example: (simple) Label with image?

2010-03-24 Thread Simon
I would create a widget by extending Composite and wrapping a native Image and Label : public class ImageLabel extends Composite { @UiConstructor public ImageLabel(String url, String text) { Image image = new Image(url); Label label = new

Making valid and accessible web pages with GWT

2010-03-24 Thread enTropy Fragment
Hi! I am developing a web page that should be accesible. While working with GWT I have discovered it is more focused in RIA than in creating standard and good code. It is so open and powerfull that it still makes sense (to me) to keep working with it so I just wanted to share with you the best

Re: How can I access a window object in hand written java script in GWT

2010-03-24 Thread Olivier Monaco
This link may be a good start: http://code.google.com/intl/fr/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html Olivier On 24 mar, 07:42, Muthu muthulala...@gmail.com wrote: Hi, I have a java script that I use from a third party. I needed to do some modification and as part of that I need

Re: Possible to set style for ScrollPanel?

2010-03-24 Thread RPB
Have a look at this thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/cad105fb7b33c745/3ae25f73b841777e#3ae25f73b841777e The scrollbar CSS will only work in Internet Explorer. There is no support for the other browsers. -Rob On Mar 24, 5:46 am, jayalakshmi

Re: gwt app partially loaded but user can interact

2010-03-24 Thread mmoossen
Hi, Mariyan! you have just to set window.onload handler in your module's entry point, ie: (we aware that i have not tried to compile it, and i am not sure if it will trigger if installed after the window is actually load, which could happen for instance when the images are in the browser cache)

Incorrect XML escaping of semicolon

2010-03-24 Thread googelybear
Hi, It seems that GWT DOES escape the semicolon character but actually this is a valid XML character and should not be escaped according to http://www.w3.org/TR/REC-xml/#sec-references and http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references Here's a snippet of how this

Re: gwt app partially loaded but user can interact

2010-03-24 Thread mariyan nenchev
I'm not sure what you are trying to do :(. -- 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: gwt app partially loaded but user can interact

2010-03-24 Thread mmoossen
the point is that your EntryPoint#onModuleLoad method triggers at document load, which is when the dom is ready, but not when the images are ready, so you have to wait until the window load event is triggered. that is all. HTH Michael On Mar 24, 12:45 pm, mariyan nenchev

Re: gwt app partially loaded but user can interact

2010-03-24 Thread enTropy Fragment
He's trying to show you how to change the UI when everything is ready to be showed. Simplifying, something like that RootPanel.get().add(new LoadingPanel()); /* Displays a panel that shows a Loading... message */ // do all the stuff for loading the images, create the panels you want to show and

Re: gwt app partially loaded but user can interact

2010-03-24 Thread mariyan nenchev
Thanks. Will try it. -- 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 google-web-toolkit+unsubscr...@googlegroups.com.

Re: gwt app partially loaded but user can interact

2010-03-24 Thread mariyan nenchev
Hi, i tried it, but it seems that onLoad is not triggered. -- 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

How can i make the html tag div deplacable and resizable

2010-03-24 Thread zizou84
Hi i have my login form done with HTML code( my form looks like div /div) is there any way to make my HTML form deplacable and resizable ( i use 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

Re: Error while installing Google Plugin for (Fedora) Eclipse 3.5.1

2010-03-24 Thread Rajeev Dayal
Ha, hopefully you won't encounter too many! You can file an issue via this URL: http://code.google.com/p/google-web-toolkit/issues/list When choosing a category, choose EclipsePlugin. On Wed, Mar 24, 2010 at 4:23 AM, Randell josephrandell.benavi...@gmail.comwrote: On Mon, Mar 22, 2010 at

Re: Server side: start independent Thread at deploy on server

2010-03-24 Thread aw4y
The server side of a GWT project is a service for your GWT application, interacting with RPC on demand. I use a socket in my server side, but it communicate on RPC request. So i think you cannot start a server socket on the service, but you have to use a standalone server (that implements the

Re: About deploying using eclipse plugin.

2010-03-24 Thread Rajeev Dayal
Can you post the contents of your appengine-web.xml file? On Tue, Mar 23, 2010 at 10:14 AM, Jolam j.jo...@gmail.com wrote: My app works fine in my own machine but when I deploy it using eclipse plugin , an error occurs: javax.servlet.ServletContext log: UrlServiceImpl: ERROR: The

Re: Questions about OnModuleLoad() and onPageLoad event

2010-03-24 Thread mariyan nenchev
Hi, any luck with this. Did you manage to catch body.onload event in the gwt entry point? -- 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: Multi-tenancy in GWT

2010-03-24 Thread Uros Trebec
I think the best way to do this is to deploy new instance of client application for every customer and have one instance of server application that all client applications work with to get their data, non-client-side business logic, etc. We're doing it this way when we have different versions of

Re: Incorrect XML escaping of semicolon

2010-03-24 Thread Jeff Chimene
Does this happen in all browsers, or just one? GWT uses the browser to perform the XML document/node manipulation. On Wed, Mar 24, 2010 at 3:34 AM, googelybear googelyb...@gmail.com wrote: Hi, It seems that GWT DOES escape the semicolon character but actually this is a valid XML character

Re: Coding dynamic parts with GWT

2010-03-24 Thread Jochen Schnaidt
Hi, I got it. The solution via List works. For the next with this problem, here is my solution: ListTextBox trackList = new ArrayListTextBox(); for (int i = 0; i number; i++) { TextBox track = new TextBox(); trackList.add(track); generateEventHeadPanel.add(track); } ... String text =

Re: Coding dynamic parts with GWT

2010-03-24 Thread Jeff Chimene
Hi Jochen: One other item of note: you might want to eliminate the ability of the user to enter an arbitrary value. For example, what happens if I enter -32767? or 65536 as the value for number? Consider implementing the source of number as a listbox with a limited size so that it't not possible

Re: Coding dynamic parts with GWT

2010-03-24 Thread Jochen Schnaidt
Hi, at the moment my 'number' is a Integer.parse of a String from a TextBox in a try/catch with errorhandling but my layout is not finished yet. Thanks for the idea, I didn't thought of that until now. On Mar 24, 4:19 pm, Jeff Chimene jchim...@gmail.com wrote: Hi Jochen: One other item of

Re: Server side: start independent Thread at deploy on server

2010-03-24 Thread aw4y
oh i like to contradict myself :) i tried to make a simple tcp echo (threaded) server..started by the service (with a call) and it works! obviously it dies when the session dies...but hey, it's a start! On Mar 24, 3:39 pm, aw4y noneoft...@gmail.com wrote: The server side of a GWT project is a

Re: 'Stop running this script' message in browsers

2010-03-24 Thread keyboard_samurai
Hi, Yes the script process all the data at once because we have a requirement that all the nodes to be expanded rather than collapsed. Thank you! On Mar 24, 1:24 am, Eric erjab...@gmail.com wrote: On Mar 23, 2:21 pm, Jeff Chimene jchim...@gmail.com wrote: On 03/23/2010 11:05 AM,

Re: Determining Permutation on Server

2010-03-24 Thread Nathan Wells
You're correct, in more complex environments where a more robust property provider is necessary, my approach wouldn't do much good. But then, I'm not talking about handling those use cases. The goal is to not make an unnecessary request, and if I have the user agent in the server on the initial

Re: XML Parser error in hasAttributes()

2010-03-24 Thread pschonefeld
this was happening for me on a text node so checked that getNodeType() was an element (1) and all was OK. HTH -- 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

onSubmitComplete is not fired when response.setContentType(application/x-download)

2010-03-24 Thread Kewei
I found that the onSubmitComplete will not be fired when in the servlet, the response's content type is set to application/x- download. I am using GWT and FormPanel, I just wanted to download a file generated form servlet and get a callback when the downloading finished, how could I do that?

UiBinder Docs

2010-03-24 Thread perlmonkey2
I'm looking for detailed documentation for UiBinder. http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html contains some clues and the JavaDocs sometimes contain useful examples. But I was hoping that there were detailed syntax docs covering all possible properties which can be

Passing parameter via POST

2010-03-24 Thread Vincent
Hi: I am new to GWT so please excuse this stupid question. I have a GWT app that I can jump from page to page. On one page, I want to jump to another page with a set of parameters but I do not want to pass them via GET. I like to use POST. Is there a way to redirect a page in GWT with a set

best way to carry variables/parameters between GWT pages

2010-03-24 Thread VY
Hi: I am new to GWT, and trying to find out a good way to carry variables/parameters (HTML hidden variables) from one GWT page to another. What is the best way? Thanks --vincent -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-24 Thread aish sundar
I am a newbie to GWT and have some integrating a GWT project to an existing web project running on Tomcat within Eclipse. It will be great if any one of you can help out. Heres the scenario. 1) I have a separate GWT project I created using GWT plugin for Eclipse. Lets call it TestUI 2) I already

GWT-GAE integration

2010-03-24 Thread laurent
I'm trying to use GWT 2.0.3 together with GAE (using the Eclipse plugin). I have got the following exception on the server whenever I want to make a RPC call: Caused by: java.lang.RuntimeException: Unable to get Unsafe instance at

Re: GWT 2.0.3 + Maven2 + Eclipse

2010-03-24 Thread will0
I can confirm the instructions from Keith work. Thanks so much. I must have spent eight hours trying to figure this out. Will Temperley On Mar 23, 3:37 pm, Keith Platfoot kplatf...@google.com wrote: Hi Bert, I converted the GWT starter app into a Maven project (see attachment), which might

Problems with AuthSub implementation on GWT + GAE app to access Google Spreadsheets.

2010-03-24 Thread tyler.nc
Hi All, Firstly, I would like to thank anyone taking the time to read this! I am writing a web application that will use GWT to design the GUI and GAE as the development stack. The app needs to access each users Google Spreadsheets account while preserving user anonymity. To do this I have chosen

JPA and GWT 2.0

2010-03-24 Thread giaros
Hello I cannot figure out how to integrate JPA with GWT. I'm using eclipse Galileo with GWT2.0 plug-in and it seems that my problem is with datanucleus. Instead of using eclipselink library my project try always to use datanucleus -- You received this message because you are subscribed to the

Re: Possible to set style for ScrollPanel?

2010-03-24 Thread Sekhar
Thanks, this must be the first time I'm seeing something work only in IE. :) On Mar 24, 3:14 am, RPB robbol...@gmail.com wrote: Have a look at this thread:http://groups.google.com/group/google-web-toolkit/browse_thread/threa... The scrollbar CSS will only work in Internet Explorer. There is

Re: Problem with the datebox : handling to value change events when setting a format

2010-03-24 Thread Youen Chene
Hi, Still have the same problem and duplicated code. Following the bug. Regards, On Wed, Mar 24, 2010 at 5:07 PM, Diego Alvarez Araujo Correia dal...@gmail.com wrote: I'm facing the same problem and have opened a bug for it:

Re: onSubmitComplete is not fired when response.setContentType(application/x-download)

2010-03-24 Thread Thomas Broyer
On Mar 23, 6:11 pm, Kewei keweish...@gmail.com wrote: I found that the onSubmitComplete will not be fired when in the servlet, the response's content type is set to application/x- download. Yes, as said in the javadoc:

Re: UiBinder Docs

2010-03-24 Thread Thomas Broyer
On Mar 24, 2:57 pm, perlmonkey2 kalebmur...@gmail.com wrote: I'm looking for detailed documentation for UiBinder. http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html contains some clues and the JavaDocs sometimes contain useful examples. But I was hoping that there were

Re: GWT 2.0.3 + Maven2 + Eclipse

2010-03-24 Thread Keith Platfoot
That's great Will, glad you found my instructions useful! Configuring Maven + GWT + Eclipse did take a little while to figure out, but the good news is it's now *much* easier to use such a configuration with the Google Plugin for Eclipse, as of version 1.3. Keith On Wed, Mar 24, 2010 at 11:25

Re: Determining Permutation on Server

2010-03-24 Thread Thomas Broyer
On Mar 24, 5:09 pm, Nathan Wells nwwe...@gmail.com wrote: You're correct, in more complex environments where a more robust property provider is necessary, my approach wouldn't do much good. But then, I'm not talking about handling those use cases. The goal is to not make an unnecessary

UI Binder and MVP

2010-03-24 Thread skippy
I am using the UI Binder to build a site. I like the MVP design pattern shown in the contacts example. However, when I try to put the ui binder in a view and have the appControler construct the presenter I get a blank page when ask for asWidget. I think this is because both the MCP entry point

OOPHM memory leak?

2010-03-24 Thread Dominik Steiner
Hi there, I'm using eclipse 3.5 on Mac OSX with the google eclipse plugin and GWT 2.0. What I see is that every time I reload my gwt app that I'm debugging using the Web Application launch configuration from the plugin and OOPHM in Firefox 3.5, the memory usage of the java process that is being

Re: working with a freelancer designer on a gwt project

2010-03-24 Thread jocke eriksson
Well we let the designer team do the design in photoshop then we implement it. Because a designer should not have to learn all does tools. 2010/3/24 dk dkberk...@gmail.com Hello everyone, I have been developing a gwt+grails application but I am not happy with the default widget styles and

Re: UI Binder and MVP

2010-03-24 Thread jocke eriksson
RootPanel is a singleton so that should not be the case. Could you share some code thats shows how the view is created and attached to the RootPanel. 2010/3/24 skippy a...@2lehmans.com I am using the UI Binder to build a site. I like the MVP design pattern shown in the contacts example.

Re: help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-24 Thread aish sundar
Thats sounds gr8!! Thanks a lot. will look out for the reply On Mar 24, 1:51 pm, Keith Platfoot kplatf...@google.com wrote: Hi aish, Yes, this type of configuration is definitely possible.  However, as of right now, using it with the current version of the Google Plugin for Eclipse requires

Re: UI Binder and MVP

2010-03-24 Thread davidroe
the examples of the mvp4g project seem to mix MVP and UiBinder well. http://code.google.com/p/mvp4g/ On Mar 24, 10:57 am, skippy a...@2lehmans.com wrote: I am using the UI Binder to build a site. I like the MVP design pattern shown in the contacts example. However, when I try to put the ui

Re: Passing parameter via POST

2010-03-24 Thread Sudeep S
HI Vincent, I had a similar requirement, i've used a intermediate servlet to which the data was posted ...the parameters were picked and stored in session and later retrieved from gwt servlet. had to follow this approach because gwt servlet doesnt take POST method. Thanks Sudeep On Wed, Mar

How can I change the body's background without using external style sheets?

2010-03-24 Thread Shedokan
How can I do in GWT this: document.body.style.background = red; I'm trying to change the background color of the body element without adding a special class to the body or any of that external css. Thanks. -- You received this message because you are subscribed to the Google Groups Google Web

GWT 2.0 jars that should be part of a Web apps' class path during installation

2010-03-24 Thread jayanth
I have a question concerning GWT 2.0 jars that should be part of a web applications' class path (WEB-INF/lib) during installation. The application server I am targeting is WAS 6.1. Is my understanding correct that the following jars need to be installed and that the rest of the jars are for

Re: How can I change the body's background without using external style sheets?

2010-03-24 Thread dolcra...@gmail.com
Document.getBody().getStyle().setBackgroundColor(red); On Mar 24, 3:48 pm, Shedokan shedok...@gmail.com wrote: How can I do in GWT this: document.body.style.background = red; I'm trying to change the background color of the body element without adding a special class to the body or any of

Re: How can I change the body's background without using external style sheets?

2010-03-24 Thread Olivier Monaco
Hi, Did you try something like: Document.get().getBody().getStyle().setBackgroundColor(...); Where Document is com.google.gwt.dom.client.Document. Olivier On 24 mar, 20:48, Shedokan shedok...@gmail.com wrote: How can I do in GWT this: document.body.style.background = red; I'm trying to

How do I override Safari's default behavior when the TAB key is pressed

2010-03-24 Thread Rob Tanner
I am writing a password change/reset application. When the user knows his/her current password, they simply enter their uid and password and I have a Blur handler in place that validates them as soon as the password field looses focus. Below that are two password entry fields (a type your new

Re: Grid uibinder

2010-03-24 Thread Tristan Slominski
Same as other widgets. @UiField Grid myGrid; or @UiField(provided = true) Grid myGrid = new Grid(1,1); Depending on what you're doing. On Mar 22, 2010 9:50 AM, gadaleta.marco gadaleta.ma...@gmail.com wrote: but if i want to use grid inside code, how can bind it with uibinder method? On 20

Re: GWT 2.0 jars that should be part of a Web apps' class path during installation

2010-03-24 Thread Sripathi Krishnan
Yes, your understanding is correct. If you are not using RPC, you can even eliminate gwt-servlet.jar. --Sri On 25 March 2010 01:35, jayanth jay.sesha...@gmail.com wrote: I have a question concerning GWT 2.0 jars that should be part of a web applications' class path (WEB-INF/lib) during

Re: Making valid and accessible web pages with GWT

2010-03-24 Thread kozura
I suppose it depends on your priority. What is your purpose in GWT generated code passing this particular html validation? Is the resulting application actually going to be more accessible if these were fixed, or is it just because somewhere says its good practice? Keep in mind the problem GWT

Re: best way to carry variables/parameters between GWT pages

2010-03-24 Thread kozura
Hi Vincent, Depends on how you define a GWT page. If each page is a separate GWT module with its own entry point, you could use standard URL parameters to pass information to each new page. However this is not an optimal way to use GWT, which is really much better at making single unified

Re: OOPHM memory leak?

2010-03-24 Thread kozura
Same setup, I do see a slow increase of about 10-20MB per page upload in the Developer application. Eventually this might lead to out of memory exception; you could always increase the heap size for now to avoid that for awhile longer, -Xmx512 or whatever. I see nothing maintained in the app

Re: TextBox.setFocus(true) does not work in any browser

2010-03-24 Thread kozura
The TextBox has to be loaded and visible on the page before setFocus works. You might use onLoad, or I just use a generic DeferredCommand method to set focus as part of a widget's constructor: public static void setFocus(final FocusWidget wid) { DeferredCommand.addCommand(new

Re: OOPHM memory leak?

2010-03-24 Thread Dominik Steiner
Thanks kozura for your reply, here with me I see an increase of around 40 MB on each reload, and my app already starts with java allocating 200 MB on the first load. Not sure if the project size correlates with the amount of memory that leaks, here with me I have around 700 classes on my

Re: Unable to Use GWT Developer Plugin with Firefox 3.6

2010-03-24 Thread J Robert Ray
The binary component of the extension (libgwt_dev_ff36.so) comes built with a runtime dependency on libnspr4.so.0d. On my linux system, I do not have this '0d' version, just /lib/libnspr4.so. I was able to get the plugin to load by creating a symlink libnspr4.so.0d - libnspr4.so in /lib. On

Re: Making valid and accessible web pages with GWT

2010-03-24 Thread enTropy Fragment
Thanks for asking. Didn't know about the new layouts, I'll take them a good look. I need the web to be accessible since their target users will be people with diffrent kinds of disabilities. I also like to work with standards. I understand though that some errors are irrelevant. What I really

Re: GWT-GAE integration

2010-03-24 Thread Jamie Gennis
I also ran into this recently. My understanding is that the new RPC mechanism in GWT 2 (called deRPC or direct-eval RPC) is currently not compatible with GAE for a couple reasons (I worked around one, but stopped when I immediately ran into another). However, GWT 2 still supports the old-style

Re: Making valid and accessible web pages with GWT

2010-03-24 Thread kozura
I've found the new LayoutPanel stuff to be much better for making predictable layout in any case, and, with the exception of Tree and decoratorpanels you can do everything without tables. You have to switch to standards mode, so it requires switching everything at once in a preexisting app.

Re: OOPHM memory leak?

2010-03-24 Thread kozura
I'm sure the project size probably does affect the amount, these are fairly significant chunks of memory to be adding for every reload. I've not done java leak debugging with its gc, and am not familiar with OOPHM details enough to know what to look for, so might be a good idea to post an issue on

Re: Exception: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser.

2010-03-24 Thread kozura
Sounds like you might still have the client app cached on your browser, which might happen if your server isn't handling caching correctly. Check out the bottom of http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html. -- You received this message because you are

Re: Upgrade from 1.5.3 to 2.0

2010-03-24 Thread kozura
There's no replies because there's no real answer, it depends on your application and how much existing code you have. If you have lots of existing code, it may not be worth it to switch. If your app doesn't have a lot of static components, it may not be worth using UIBinder to build them. So

Re: Need robust file uploading example with GWT 1.6.4

2010-03-24 Thread kozura
I'd highly recommend using GWT the upload library, at http://code.google.com/p/gwtupload/. It allows users to download multiple files, gives a nice progress bar, and there's fairly decent documentation and examples for how to write the code. -- You received this message because you are

Re: GWT-GAE integration

2010-03-24 Thread Sekhar
I'm using GWT 2.0.3 with GAE 1.3.1, and RPC is working fine for me (I didn't change anything to make it work). What problem did you have? On Mar 24, 7:11 pm, Jamie Gennis jgen...@gmail.com wrote: I also ran into this recently.  My understanding is that the new RPC mechanism in GWT 2 (called

[gwt-contrib] Adds detail places to the scaffolding app (issue251801)

2010-03-24 Thread rjrjr
Reviewers: Ray Ryan, amitmanjhi, Description: Adds detail places to the scaffolding app Please review this at http://gwt-code-reviews.appspot.com/251801/show Affected files: A bikeshed/src/com/google/gwt/app/place/GoToPlace.java M bikeshed/src/com/google/gwt/app/place/PlacePicker.java M

[gwt-contrib] TabLayoutPanel suggestion: Add tab-position property

2010-03-24 Thread dflorey
Hi, I just needed a TabLayoutPanel with Tabs on the bottom instead of tabs on the top. I copied the TabLayoutPanal and changed the orientation. I'd like to suggest to add this feature as an option in another cstr. It requires just 3 lines of code ;-) Daniel --

[gwt-contrib] [google-web-toolkit] r7778 committed - Edited wiki page through web user interface.

2010-03-24 Thread codesite-noreply
Revision: 7778 Author: b...@google.com Date: Wed Mar 24 09:46:37 2010 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=7778 Modified: /wiki/CssResource.wiki === --- /wiki/CssResource.wiki Wed

[gwt-contrib] ...and: Add setEnabled() to menu items

2010-03-24 Thread dflorey
I've been missing that one as well. I can provide patches if desired. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as

[gwt-contrib] Re: Ignore permission denied selenium errors and don't request title after tests stop (issue264801)

2010-03-24 Thread rdayal
I think this still needs some work. I'd suggest that we meet up and discuss the general threading pattern here; I think there could be a few pitfalls, so let's discuss the way that we want this class to work, and then re-work the threading/synchronization around that.

[gwt-contrib] Re: Adds a Precompress linker that can be used to compress public artifacts (issue254801)

2010-03-24 Thread rice
LGTM with nits http://gwt-code-reviews.appspot.com/254801/diff/10001/11004 File user/src/com/google/gwt/util/regexfilter/RegexFilter.java (right): http://gwt-code-reviews.appspot.com/254801/diff/10001/11004#newcode31 user/src/com/google/gwt/util/regexfilter/RegexFilter.java:31: * it indicates

[gwt-contrib] [google-web-toolkit] r7779 committed - Removing several old, stale feature branches that aren't needed anymor...

2010-03-24 Thread codesite-noreply
Revision: 7779 Author: sco...@google.com Date: Wed Mar 24 13:27:29 2010 Log: Removing several old, stale feature branches that aren't needed anymore. http://code.google.com/p/google-web-toolkit/source/detail?r=7779 Deleted: /branches/1_6_clean_events /branches/1_6_datepicker

[gwt-contrib] Re: Adds a Precompress linker that can be used to compress public artifacts (issue254801)

2010-03-24 Thread spoon
Thanks, Dan. I'll submit it shortly. http://gwt-code-reviews.appspot.com/254801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the

[gwt-contrib] Re: Adds a Precompress linker that can be used to compress public artifacts (issue254801)

2010-03-24 Thread spoon
http://gwt-code-reviews.appspot.com/254801/diff/10001/11004 File user/src/com/google/gwt/util/regexfilter/RegexFilter.java (right): http://gwt-code-reviews.appspot.com/254801/diff/10001/11004#newcode31 user/src/com/google/gwt/util/regexfilter/RegexFilter.java:31: * it indicates that queries

[gwt-contrib] Proposed Change: Allow mulitple runStyles to execute simultaneously (issue267801)

2010-03-24 Thread jlabanca
Reviewers: jat, Description: Currently, JUnitShell only supports running one runStyle (ex. Selenium, RemoteWeb, HtmlUnit) at a time. As a result, we need to run the same tests multiple times in order to use all runStyles. In our own build system, we use Selenium and RemoteWeb to cover all

[gwt-contrib] Upgraded to a dethreaded HtmlUnit r5607. Removed @DoNotRunWith annotation (issue268801)

2010-03-24 Thread amitmanjhi
Reviewers: Ray Ryan, kathrin, Frank, Description: Upgraded to a dethreaded HtmlUnit r5607. Removed @DoNotRunWith annotation from many tests. Classified all other failures as either HtmlUnitLayout, HtmlUnitUnknown, or HtmlUnitBug. Please review this at

[gwt-contrib] Re: RR : Soft permutations (issue160801)

2010-03-24 Thread bobv
Ready for another round of reviews. I rebased patch set 6 to r7776. http://gwt-code-reviews.appspot.com/160801/diff/16001/17002 File dev/core/src/com/google/gwt/core/ext/linker/SoftPermutation.java (right): http://gwt-code-reviews.appspot.com/160801/diff/16001/17002#newcode25

[gwt-contrib] Re: Upgraded to a dethreaded HtmlUnit r5607. Removed @DoNotRunWith annotation (issue268801)

2010-03-24 Thread amitmanjhi
On 2010/03/24 20:48:28, amitmanjhi wrote: Even though this patch is large, the changes are fairly minor. Almost all the changes are @DoNotRunWith annotations being deleted from test methods and test classes. The changes to src files (in user/src) are minor -- in response to updates to HtmlUnit.

[gwt-contrib] Re: Upgraded to a dethreaded HtmlUnit r5607. Removed @DoNotRunWith annotation (issue268801)

2010-03-24 Thread Katharina Probst
The changes to src files (in user/src) are minor -- in response to updates to HtmlUnit. Kathrin, can you take a look at those? Sure. http://gwt-code-reviews.appspot.com/268801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send

[gwt-contrib] Re: Upgraded to a dethreaded HtmlUnit r5607. Removed @DoNotRunWith annotation (issue268801)

2010-03-24 Thread amitmanjhi
http://gwt-code-reviews.appspot.com/268801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] Re: Adds detail places to the scaffolding app (issue251801)

2010-03-24 Thread rjrjr
Changes committed, except am not yet making missing request from RequestDetails (faux back end doesn't do it yet), and am keeping the ListPlaceRenderer. http://gwt-code-reviews.appspot.com/251801/diff/8001/9011 File bikeshed/src/com/google/gwt/sample/expenses/client/ListRequester.java (right):

[gwt-contrib] [google-web-toolkit] r7780 committed - Snip bad 1.6 style use of @Override

2010-03-24 Thread codesite-noreply
Revision: 7780 Author: rj...@google.com Date: Wed Mar 24 12:04:59 2010 Log: Snip bad 1.6 style use of @Override http://code.google.com/p/google-web-toolkit/source/detail?r=7780 Modified: /trunk/user/test/com/google/gwt/core/ext/linker/impl/SelectionScriptLinkerUnitTest.java

[gwt-contrib] [google-web-toolkit] r7781 committed - Adds details place to scaffold app, and deletes unused...

2010-03-24 Thread codesite-noreply
Revision: 7781 Author: rj...@google.com Date: Wed Mar 24 12:16:12 2010 Log: Adds details place to scaffold app, and deletes unused EntityPlaceVisitor, EntityPlaceFilter. Review at http://gwt-code-reviews.appspot.com/251801 Review by: amitman...@google.com

[gwt-contrib] Re: RR : Soft permutations (issue160801)

2010-03-24 Thread scottb
LGTM with nits, but Lex should double-check the CompilePerms change. http://gwt-code-reviews.appspot.com/160801/diff/16001/17015 File dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java (right): http://gwt-code-reviews.appspot.com/160801/diff/16001/17015#newcode240

[gwt-contrib] Re: Upgraded to a dethreaded HtmlUnit r5607. Removed @DoNotRunWith annotation (issue268801)

2010-03-24 Thread flin
LGTM On 2010/03/24 21:13:33, amitmanjhi wrote: http://gwt-code-reviews.appspot.com/268801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email

[gwt-contrib] Ant changes in response to a stable htmlUnit. (issue269801)

2010-03-24 Thread amitmanjhi
Reviewers: jlabanca, Description: Ant changes in response to a stable htmlUnit. Patch by: amitmanjhi Review by: jlabanca Please review this at http://gwt-code-reviews.appspot.com/269801/show Affected files: M user/build.xml Index: user/build.xml