Re: file upload without browse button

2010-05-24 Thread aditya sanas
Hi guys, here is the solution which i have found on the gwt groups people who wants change look and feel of their file upload widget here is the ideal solution for those guys. http://code.google.com/p/gwtupload/wiki/GwtUpload_GettingStarted

UIObject getOffsetWidth() method returning absurd value for IE

2010-05-24 Thread Tapas Adhikary
I am using GWT 2.0 . In my application , I am using a logic to randomly/correctly position the pop-up when I click an anchor link. I am setting the position of the popup using the UiObject's OffsetWidth and OffsetHeight property. I am calling , popupPanel.setPopupPositionAndShow( new

Re: GWT Compile Issue

2010-05-24 Thread Sorinel C
Try to add these line under this one: !-- Inherit the core Web Toolkit stuff.-- inherits name='com.google.gwt.user.User'/ ADD NE LINES: inherits name=com.google.gwt.core.Core/ inherits name=com.google.gwt.user.History/ Cheers! PS: more info about GWT 2.0:

Re: GWT Compile Issue

2010-05-24 Thread aditya sanas
Please check for is your java code is not importing some unnecessary stuff which might be not supported by GWT. to remove unnecessary imorts you can opt for a short cut key : Ctrl+Shift+O and then try to compile. -- Aditya On Mon, May 24, 2010 at 2:00 PM, Sorinel C

Re: GWT designing

2010-05-24 Thread aditya sanas
hi, you are seemed to little confuse with exactly what you want to do. In GWT which is module base, which loads a single class which override a method onModuleLoad() from entry point and which we specify in the module using entry-point class='com.weshine.intelltest.client.Admin'/

How to remove last cell spacing from a Grid

2010-05-24 Thread outsource lucas
I have a 3x3 Grid, and I am putting only background images in each cell, but these images have to touch. Right now, I can't remove the cell spacing with CSS. I tried every CSS style property on both the Grid (TABLE) and the cell-panels (DIVs inside TDs). I inspected the generated HTML elements

Re: how to get the max screen size (useable screen area of the browser)

2010-05-24 Thread outsource lucas
great, thats it! thanks! On Sun, May 23, 2010 at 11:21 AM, Thomas Broyer t.bro...@gmail.com wrote: On 23 mai, 10:21, outsource lucas outsourcelu...@gmail.com wrote: how to get the max screen size? (talking about useable screen area of the browser, not about the monitor resolution)

Re: GWT Compile Issue

2010-05-24 Thread Sorinel C
An if you use the just released GWT 2.1M1 then you have to add more stuff to your module .gwt.xml file Check it out here to see it: http://ui-programming.blogspot.com/2010/05/gwt-upgrade-to-gwt-21-m1-and-fix-module.html Cheers -- You received this message because you are subscribed to the

Re: GWT designing

2010-05-24 Thread Paul Robinson
The OP said he has two classes in one package, not multiple entry points in one module. His problem is more likely just an error in the code he's written, but without seeing any source code, there's no chance to help. Paul aditya sanas wrote: hi, you are seemed to little confuse with

What is Flowella?

2010-05-24 Thread James Baker
Have you people checked Flowella?? It is an easy to use tool that enables designers and developers to create design prototypes — without writing a line of code!! These applications can then be run on one of over seventy Nokia devices or in a simulator supplied with Flowella, enabling the

Re: GWT designing

2010-05-24 Thread Thomas Broyer
On 22 mai, 07:18, Shyam Visamsetty shyamsunder...@gmail.com wrote: Window.open(linkURL, _self, ) Window.Location.assign(linkURL) -- 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: GWT Compile Issue

2010-05-24 Thread Thomas Broyer
On 21 mai, 21:49, jayanth jay.sesha...@gmail.com wrote:   !-- Specify the app entry point class.                         --   entry-point class='whi.idm.client.GIDM'/   source path=whi.idm.client / Is your gwt.xml really in the default package ?! (i.e. at the root of your source tree) --

Re: How to remove last cell spacing from a Grid

2010-05-24 Thread outsource lucas
solved it partly by this: Grid grid = new Grid(3,3); grid.setStyleName(grid); CellFormatter cellformat=grid.getCellFormatter(); cellformat.setStyleName(0, 0, NW); cellformat.setStyleName(0, 1, N);

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread Thomas Broyer
On 24 mai, 04:52, Craig Day craig...@gmail.com wrote: The new CellTable and PagingListView/ListView programming model is really nice, great work guys!! but the glaring omission I can see in the M1 drop is a table that has a scrolling data area and a fixed header/footer, as opposed to a

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread Flemming Boller
I guess that the header is not fixed in this example? I mean that when you use the scroll, the header moves together with the data, so the header is not fixed. /Flemming On Mon, May 24, 2010 at 12:05 PM, Thomas Broyer t.bro...@gmail.com wrote: On 24 mai, 04:52, Craig Day

Re: GWT RPC and GoDaddy

2010-05-24 Thread gengstrand
You need to run with JRE 1.5 and GWT 1.6 On May 23, 11:56 am, Mike Apolis michaelgb@gmail.com wrote: I'm not sure what this has to do with SSO?  I'm not authenticating any user.  Its the GWT sample stockwatcher app, there are no users to authenticate :) Since Mac OSX has problems with

Re: GWT RPC and GoDaddy

2010-05-24 Thread Tom Davies
On May 23, 2:44 am, Mike Apolis michaelgb@gmail.com wrote: java.lang.UnsupportedClassVersionError: Bad version number in .class That means that you are running a class compiled with a later JDK on an earlier JVM -- e.g. you've built your project with JDK 1.6 and are trying to run it on a

Direct-Eval Rpc

2010-05-24 Thread Gursel Koca
I am using direct-eval rpc. The performance is better than the usual gwt-rpc mechanism especially in dev mode. But while I am checking the payload size with fiddler, I am surprised to notice the payload size is 70 times more than usual rpc mechanism. Serialized domain objects represents

Re: help with serialization

2010-05-24 Thread Gursel Koca
gwt.example.util.Pair p should be transient.. GWT serialization is similar to Java serialization. Gwt serializer try to serialize every non transient , final fields. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Grid-class puts a whitespace in every empty TD cell, how to remove them?

2010-05-24 Thread outsource lucas
Can't get my table cells to small size because of the whitespace that GWT puts in every empty TD cell of the table. This limits the table cells to a minimum size of 6x18, because of the font (can get smaller if I set the font smaller, but will always remain limited to the font). How to remove

Re: On GWT I18N

2010-05-24 Thread dmen
Hi Stefan, By coincidence I use Spring MVC along with GWT. Spring controllers do not have to handle business logic. For example in my current app I have the following architecture: Model: Domain + Services View: GWT + JSP (i18n and other stuff) Controller: GWT event handlers (client) - Spring MVC

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread Craig Day
That's correct. The entire table is a static block. The more useful table control is one that has a fixed header (ideally with resizable columns and sorting controls) and a scrollable data area. Cheers Craig On May 24, 6:29 pm, Flemming Boller flemming.bol...@gmail.com wrote: I guess that the

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread Thomas Broyer
On 24 mai, 12:29, Flemming Boller flemming.bol...@gmail.com wrote: I guess that the header is not fixed in this example? I mean that when you use the scroll, the header moves together with the data, so the header is not fixed. Oops! Sorry. Saw the pager (which I assumed to be somehow

Re: RPC callback fails: status code 0

2010-05-24 Thread kozura
Not sure what you mean by status code 0, does your onFailure callback get called, and what is the exception sent to it? Also be sure to check both the Jetty console and the client-particular console for any errors that show up there. On May 23, 9:49 pm, Sky myonceinalifet...@gmail.com wrote: Hi

Re: How to remove last cell spacing from a Grid

2010-05-24 Thread kozura
Try setting the styling of the images to include display: block;. Images are default display: inline which leaves extra space for text footers and such. On May 24, 4:03 am, outsource lucas outsourcelu...@gmail.com wrote: solved it partly by this:                 Grid grid = new Grid(3,3);    

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread kozura
Also the ability to fix one or more columns from scrolling, for instance like you might see in a spreadsheet. Simplest is a single column header, but the more complete general solution is to allow any number of fixed row/column header/footers to be specified, and of course row(/column)-spanning.

Re: Grid-class puts a whitespace in every empty TD cell, how to remove them?

2010-05-24 Thread outsource lucas
GWT fills TDs like this by default: TDnbsp;TD/ I found this solution now to remove the whitespace(nbsp;), its a simple function: - grid.clear(true); which does something like this: - DOM.setInnerHTML(grid.getCellFormatter().getElement(row, column), ); for every row column (which you can also

Re: Where to put class decelerations that are used in the datastore and RPC

2010-05-24 Thread Unni Panicker
The way I interpreted this(the stock watcher demo approach) is that the classes used to transfer data are, by virtue of them being in the remote service, available to client and server. You do not need to do anything special. However if you have a utility, validation or some sort of common

GWT and Python

2010-05-24 Thread kunal ghosh
Hi all, I was following the Google IO keynotes this year and having done so last year also noticed a few things with respect to App engine. Google has been making a lot of announcements and adding a lot of features to GWT, a java based framework. Python on the other hand doesn't feature anywhere

I'm trying out an example I found in a GWT book. In side the .html file, whenever I tried to name a div the same name as the class, nothing will be displayed on the screen.

2010-05-24 Thread googling1000
Hi, This is my first attempt at GWT. Hope it will be a joyful experience. I'm trying out a hangman example from this one book called Google Web Toolkit Applications. And, I spent the last two days trying to figure out why I couldn't see anything on the screen, rather than the word Hangman

equivalent GWT Runtime in Java

2010-05-24 Thread jamesmikedup...@googlemail.com
Hi, here is an idea, is there a JRE runtime lib that contains only the supported GWT classes and methods that I can compile against? that would be great to have, a lib that I can compile against that contains all the supported features. thanks, mike -- You received this message because you are

'webAppCreator' is not recognized as an internal or external command

2010-05-24 Thread Troy
Hello everyone, I'm having an issue with the webAppCreator in Windows Vista. I have added a new user variable to my Environment Variables and I'm still getting this error: 'webAppCreator' is not recognized as an internal or external command. In my User Variables I'm adding: Variable Name: Path

Source code from other package into client app

2010-05-24 Thread fazie
Hey, I'm new in GWT and I'm building my first app using spring+gwt. I get problem with source code from another package and used by client side of gwt app. I've got two packages: x.y.dao x.y.web.gwt.client configuration of gwt module tells gwt to look up source under client/ directory: !--

Re: GWT designing

2010-05-24 Thread Thamizh Arasu
Hi, GWT design is different from normal old style web application. Here there is no page navigation concept. Everything is a kind of view. You can switch from one view to another view. In your case if you click the link, you can create your new view object and add this into rootpanel. Before

RPC with 15ms transits with *no* server side dependencies for IE6+, Opera 9+, Firefox 3+ Safari 4+ and Chrome 2+

2010-05-24 Thread Sean Kinsey
Just to let you know - as of v2.3.0, easyXDM can now offer transport/ RPC with 15ms transits with *no* server side dependencies for IE6+, Opera 9+, Firefox 3+ Safari 4+ and Chrome 2+. Other browsers/version will fall back to FIM. All you need is to include easyXDM in the two documents. See

Re: I'm trying out an example I found in a GWT book. In side the .html file, whenever I tried to name a div the same name as the class, nothing will be displayed on the screen.

2010-05-24 Thread rudolf michael
The Id of the DIV always matter whenever you are doing RootPanel.get(myDivId) and it is case sensitive also. this is applicable since GWT beta releases/ best regards, Rudolf Michael On Sat, May 22, 2010 at 2:51 PM, googling1000 googling1...@gmail.comwrote: Hi, This is my first attempt at

Re: On GWT I18N

2010-05-24 Thread Stefan Bachert
Hi, I don't use Spring MVC AND GWT in one project. What I have tried to express is that my concept of MVC especially the controller differs from that what Spring MVC is considering MVC. (My MVC: C-M-V (and a weak C-V as performance short cut), Spring MVC V-C-M) Any way, I disadvice to mix GWT

Re: New session created on server side for every RPC request.

2010-05-24 Thread DK
Hi Manoj... appreciate your response. I have an RPC request that fetches the list from databasebefore I send back a response, I get the current session and add my list as getThreadLocal().getSession().addAttribute(attributeName, activityList); inside the onSuccess() method, I am making

Linux

2010-05-24 Thread davidfx
Is it possible to setup google web toolkit on a linux box? Just wondering if anyone out there has some detailed instructions to get it started on linux. I have installed eclipse and the google web toolkit plugin. Thanks for your help -- You received this message because you are subscribed to

Re: I'm trying out an example I found in a GWT book. In side the .html file, whenever I tried to name a div the same name as the class, nothing will be displayed on the screen.

2010-05-24 Thread Sripathi Krishnan
GWT creates a hidden iframe with an id equal to whatever your module is renamed to. In your case, you had a div with id=Hangman, and GWT inserted an iframe with *the exact same id*. This caused the problem you were facing. Renaming the div got rid of the duplicate id, and that's why the

Re: On GWT I18N

2010-05-24 Thread Alexandros Papadakis
Regarding the i18n issue, we have the following problem: We have one average sized application which we deploy many times. For every deployment, labels and other i18n related information changes. For every installation we have to go through a re-build. Even worse, today an installation uses only

Re: Direct-Eval Rpc

2010-05-24 Thread Stefan Bachert
Hi, I guess you can optimize yourself by removing/compressing repeated data. You may return in a call all children of a certain item, this saves repeating the parent. It sounds that you are going to send huge complex structures. For GWT I would consider to request data only when they become

Re: Linux

2010-05-24 Thread Qian Qiao
On Sat, May 22, 2010 at 19:03, davidfx dgeorge2...@gmail.com wrote: Is it possible to setup google web toolkit on a linux box? Just wondering if anyone out there has some detailed instructions to get it started on linux. I have installed eclipse and the google web toolkit plugin. Thanks

Re: Linux

2010-05-24 Thread rudolf michael
java is platform independent. On Mon, May 24, 2010 at 6:40 PM, Qian Qiao qian.q...@gmail.com wrote: On Sat, May 22, 2010 at 19:03, davidfx dgeorge2...@gmail.com wrote: Is it possible to setup google web toolkit on a linux box? Just wondering if anyone out there has some detailed

Re: Linux

2010-05-24 Thread Jeff Chimene
On 05/22/2010 04:03 AM, davidfx wrote: Is it possible to setup google web toolkit on a linux box? Just wondering if anyone out there has some detailed instructions to get it started on linux. I have installed eclipse and the google web toolkit plugin. Thanks for your help You don't

Re: Linux

2010-05-24 Thread Chris Conroy
On Mon, May 24, 2010 at 11:52 AM, Jeff Chimene jchim...@gmail.com wrote: You don't say which distro you're using. Using Debian, it's quite do-able. However, I don't use Debianized versions of either Eclipse or FireFox. Developing GWT on Debian is going to be harder than most distros simply

Re: On GWT I18N

2010-05-24 Thread Thomas Broyer
On 24 mai, 17:30, Alexandros Papadakis alpa...@gmail.com wrote: Regarding the i18n issue, we have the following problem: We have one average sized application which we deploy many times. For every deployment, labels and other i18n related information changes.  For every installation we

Re: New session created on server side for every RPC request.

2010-05-24 Thread Thomas Broyer
On 24 mai, 17:21, DK dmanchikalap...@gmail.com wrote: Hi Manoj... appreciate your response. I have an RPC request that fetches the list from databasebefore I send back a response, I get the current session and add my list as getThreadLocal().getSession().addAttribute(attributeName,

Re: Source code from other package into client app

2010-05-24 Thread Thomas Broyer
On 24 mai, 01:58, fazie d.rabi...@gmail.com wrote: Hey, I'm new in GWT and I'm building my first app using spring+gwt. I get problem with source code from another package and used by client side of gwt app. I've got two packages: x.y.dao x.y.web.gwt.client configuration of gwt module

Re: Where to put class decelerations that are used in the datastore and RPC

2010-05-24 Thread Thomas Broyer
On 23 mai, 06:23, Unni Panicker o4tec...@gmail.com wrote: The way I interpreted this(the stock watcher  demo approach) is that the classes used to transfer data are, by virtue of them being in the remote service, available to client and server. You do not need to do anything special. However

Unable to view GWT2.0.1 app in IE8

2010-05-24 Thread Yogesh Bhave
Hi, I'm creating an application using GWT 2.0.1; it complies 6 computations and runs well in all browsers except IE8, it shows a blank page( but can be viewed in IE8 compatibility mode, so weird) . When I add the line in my gwt.xml set-property name=user.agent value=ie8 / it compiles just 1

Multiple Entry Points - URL rewriter

2010-05-24 Thread Tobias Höfler
Hi all, for some reason, I need a GWT application with multiple EntryPoints. I'm using a URL rewriter to choose which EntryPoint should be used. I was geared to the following blog entry: http://zenoconsulting.wikidot.com/blog%3A16 Unfortunately, it doesn't work until now, as I'm not shure where

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread fboller
Hi @Craig - Yes that is a nice one :-) Currently however I think you will have to suffice with the incubator version though. /Flemming On 24 Maj, 15:15, Craig Day craig...@gmail.com wrote: That's correct. The entire table is a static block. The more useful table control is one that has a

Re: Found interface com.google.gwt.user.client.Element, but class was expected

2010-05-24 Thread Brian Reilly
The causes of our problems are probably different, but I just started seeing this when trying to use JRebel on my GWT project. It seems to only happen after JRebel has reloaded a class AND I refresh the browser. Do you have anything in your environment that gets involved in class lifecycles? I

Re: MMLc: a Tool to convert HTML in GWT widgets

2010-05-24 Thread rakesh wagh
good job congrats! keep it up. On May 23, 10:59 pm, Davi Pires inho...@gmail.com wrote: Hi all, I'd like to announce that the tool I mentioned here earlier (6 months ago) has finally been opened. We call it MMLc. From the project description: MMLc is a GWT generator that processes files

Re: On GWT I18N

2010-05-24 Thread Alexandros Papadakis
On Mon, May 24, 2010 at 7:11 PM, Thomas Broyer t.bro...@gmail.com wrote: On 24 mai, 17:30, Alexandros Papadakis alpa...@gmail.com wrote: Regarding the i18n issue, we have the following problem: We have one average sized application which we deploy many times. For every deployment,

Re: MMLc: a Tool to convert HTML in GWT widgets

2010-05-24 Thread Duong BaTien
Congrats: Will MMLc support GWT Rich Text and client, soon to be open source by Google Wave client? Will that be a beginning of massive templates designed by UI designers and assembled by user? Duong BaTien DBGROUPS and BudhNet On Mon, 2010-05-24 at 10:04 -0700, rakesh wagh wrote: good job

Re: RPC callback fails: status code 0

2010-05-24 Thread Sky
Thanks for the response. Sorry, when I said the callback failed, I meant that the onFailure() method gets called, not the onSuccess() method of the AsyncCallback instance. The status code of the the StatusCodeException that is thrown is 0, which is not a standard server error response. In other

Re: help with serialization

2010-05-24 Thread Robert J. Carr
Hi Gursel- Thanks for the response, but I don't *want* Pair to serialize. And just marking it as transient doesn't fix the problem. The Pair class is out of the gwt package, and therefore, the gwt compiler can't even see it. Sorry if this doesn't make sense. On Mon, May 24, 2010 at 5:45 AM,

Re: Unable to view GWT2.0.1 app in IE8

2010-05-24 Thread Thomas Broyer
On 24 mai, 18:29, Yogesh Bhave yog.bh...@gmail.com wrote: Hi, I'm creating an application using GWT 2.0.1; it complies 6 computations and runs well in all browsers except IE8, it shows a blank page( but can be viewed in IE8 compatibility mode, so weird) . When I add the line in my gwt.xml

Re: RPC callback fails: status code 0

2010-05-24 Thread Sky
I now understand what caused this callback failure. Nothing was wrong with my implementation of the whole RPC mechanism. The problem was very special and specific to the particular browser event in which I was calling it. Let me explain, as this may benefit someone else. Doing an RPC during the

Re: DockLayoutPanel Sample Code No Style Issue

2010-05-24 Thread Matt
I'm really surprised no one else has chimed in on this. I was thinking it should be just as simple as a missing CSS. Any suggestions are greatly appreciated. -m On May 21, 11:42 am, Matt ima...@gmail.com wrote: Yep, I have !doctype html at the top of my html file.. On May 21, 11:40 am,

Re: help with serialization

2010-05-24 Thread Sky
Well, I'm new to GWT serializing, and I don't have lots of experience with Java or other serialization but to be honest serialization has always seemed very simple to me. I do not understand why Pair can't be transient and why that would not tell the GWT compiler to ignore it when serializing. Is

Re: GWT execution flow

2010-05-24 Thread Michael W
I attended Google I/O conference last week and listened to the session of GWT Wave and then I talked one of Google wave engineer about the approach they were using. Right now, I understand what is going on: Google wave team and GWT team worked together to address above issues to combine 1), 2)

Re: GWT RPC and GoDaddy

2010-05-24 Thread Michael W
Try Google App engine and point to your domain parking at GoDaddy. On May 24, 7:30 am, Tom Davies tgdav...@gmail.com wrote: On May 23, 2:44 am, Mike Apolis michaelgb@gmail.com wrote: java.lang.UnsupportedClassVersionError: Bad version number in .class That means that you are running a

custom return objects from GWT servlets?

2010-05-24 Thread doles
Hello All, So is there no way to return a custom object from a GWT servlet other than classes included in the GWT JRE emulation module? I am totally cool with that, but I am finding it hard to swallow that no one has needed that type of thing before. Again, this limitation does make sense because

Re: New session created on server side for every RPC request.

2010-05-24 Thread Michael W
Cookie session is set when the page is finished rendering/parsing. In your case, the second RPC is executed before you get full page, so session cookie is not set. Your load balancer will route your request to another resin server. It works locally because you may have only one instance in your

Re: MMLc: a Tool to convert HTML in GWT widgets

2010-05-24 Thread Gal Dolber
THanks! 2010/5/24 Duong BaTien duong.bat...@gmail.com Congrats: Will MMLc support GWT Rich Text and client, soon to be open source by Google Wave client? Will that be a beginning of massive templates designed by UI designers and assembled by user? Duong BaTien DBGROUPS and BudhNet On

Re: MMLc: a Tool to convert HTML in GWT widgets

2010-05-24 Thread Duong BaTien
Please keep us in touch. We will definitely look at your technology and GWT MVP with UIBinder in GWT 2.1 widgets. Your down-to-earth contrast between MMLc and GWT UIBinder stimulate my interest. Thanks for Sharing. BaTien On Mon, 2010-05-24 at 17:35 -0400, Gal Dolber wrote: THanks! 2010/5/24

Help deploying my GWT- wep application in an OAS

2010-05-24 Thread Lucas Rios
Hi everybody I had finished my web application in GWT, I had done all test(In Development mode) that I need and it works correctly. In this moment I'm trying to deploy the application in an OAS but I can't. Late of generate the EAR I run the application and I receive an error that tell me that

Open a new Window and inject HTML into it using GWT Window class

2010-05-24 Thread DK
I am constructing a piece of HTML code on the fly. I have am empty html page , and I need to inject this html code within the body element of the empty html page. Can someone point me in the right direction ? Right now, I am using the Window.open(test.html, test html title, some more parameters

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread Craig Day
Hi Flemming, I am going to assume that you dont speak for the GWT development team due to the lack of any real detail in your message :) but in all seriousness, I would really like some kind of indication from the dev team on their stance on this kind of UI control development. There seems to be

Problem with code which works in compiled mode and fails in hosted mode

2010-05-24 Thread Alan Chaney
Hi I'm using the gwtgl library. There's one method invocation in it which throws an exception in hosted mode but seems to work OK in compiled mode. I suspect that the answer is obvious... Any suggestions would be greatly appreciated... The actual lines of code are: float []

Smart GWT - renaming node

2010-05-24 Thread arkady
Folks, Does anyone have an example of how I could rename the node of a TreeGrid. I am performing the operation from a clickhandler and I have access to the TreeGrid. I am able to delete the node without a problem, but I cannot seem to get a rename working. I tried updating the Data element and

Re: UIObject getOffsetWidth() method returning absurd value for IE

2010-05-24 Thread Tapas Adhikary
Hi all,, Can anybody give any clue on this ? On Mon, May 24, 2010 at 1:05 PM, Tapas Adhikary tapas4...@gmail.com wrote: I am using GWT 2.0 . In my application , I am using a logic to randomly/correctly position the pop-up when I click an anchor link. I am setting the position of the popup

Re: Will we ever see a scrolling CellTable?

2010-05-24 Thread Flemming Boller
@Craig True I only speak for myself :-) I would myself not be to scared to use the incubator stuff myself. We are using them at work. this ofcouse means that we also migrate our work to the standard components when they are included in GWT dist. We have not yet had a lot of problems with that.

[gwt-contrib] STS: Setting up gwt-user and gwt-dev

2010-05-24 Thread Aaron Steele
Has anyone tried setting up gwt-user and gwt-dev in STS using the normal GWT Eclipse setup instructions (http://goo.gl/TBF7)? It seems like the projects aren't picking up dependencies in GWT_TOOLS. Basically I'm having to add each dependency to the build path manually. I've double checked that

[gwt-contrib] Fixes a bug with the path to allow the default JUnit test created by WebAppCreator to invoke the... (issue552801)

2010-05-24 Thread jlabanca
Reviewers: Dan Rice, Description: Fixes a bug with the path to allow the default JUnit test created by WebAppCreator to invoke the service. GWT.getModuleBaseURL necessarily returns a url with a trailing slash. Adding an additional slash makes the url invalid. Please review this at

Re: [gwt-contrib] STS RPC failures

2010-05-24 Thread Rajeev Dayal
Great, I think the problem was the AspectJ weaving being disabled. Glad that it is all working. On Sat, May 22, 2010 at 6:16 PM, Aaron Steele eightyste...@gmail.comwrote: I reinstalled STS and enabled AspectJ weaving. All systems are go! I can launch and run the app from within STS or from the

[gwt-contrib] [GFlow] Supporting break statement outside of loops. (issue553801)

2010-05-24 Thread aizatsky
Reviewers: Lex, Description: [GFlow] Supporting break statement outside of loops. Please review this at http://gwt-code-reviews.appspot.com/553801/show Affected files: M dev/core/src/com/google/gwt/dev/jjs/impl/gflow/cfg/CfgBuilder.java M

[gwt-contrib] Re: [GFlow] Supporting break statement outside of loops. (issue553801)

2010-05-24 Thread spoon
LGTM. I am used to GWT turning up oddities about JavaScript. This patch does something less common: showing a surprise about Java! http://gwt-code-reviews.appspot.com/553801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Reapplying r5742 and r5747 to fix RichTextArea issues 3133, 3176, 3503. The original version of... (issue555801)

2010-05-24 Thread jlabanca
Reviewers: jgw, Description: Reapplying r5742 and r5747 to fix RichTextArea issues 3133, 3176, 3503. The original version of this patch was reverted because it failed in FF. There is a small delay between the time an iframe is attached to the DOM and when it is actually available for focus.

Re: [gwt-contrib] STS RPC failures

2010-05-24 Thread Aaron Steele
It's definitely working. On the other hand, after creating a test project configured with GAE persistence (using this Roo script: http://goo.gl/fQX9), I'm able to launch and run it in developer mode but the console displays a bunch of errors: http://goo.gl/QHmn Then, if I try logging into the app

[gwt-contrib] Re: Added benchmark task to ant in user/ (issue547801)

2010-05-24 Thread spoon
Let's see if the build file can be simplified some. The rest looks good. http://gwt-code-reviews.appspot.com/547801/diff/1/4 File /user/build.xml (right): http://gwt-code-reviews.appspot.com/547801/diff/1/4#newcode598 /user/build.xml:598: property name=compile.tests.complete value=true/ This

[gwt-contrib] Breaks the circular dependencies between app, user, valuestore and (issue522803)

2010-05-24 Thread rjrjr
Reviewers: amitmanjhi, Description: Breaks the circular dependencies between app, user, valuestore and requestfactory. Does so by eliminating the app.util package by: * moving IsWidget to com.google.gwt.user.client.ui * moving everything else, all of which is rendering and parsing related, to a

[gwt-contrib] Re: Breaks the circular dependencies between app, user, valuestore and (issue522803)

2010-05-24 Thread amitmanjhi
LGTM++ for cleanup. Few nits in comment below. Is the com/google/gwt/app/util dir empty now? If so, it should be removed and so should the following line in App.gwt.xml source path=util / http://gwt-code-reviews.appspot.com/522803/diff/1/44 File

[gwt-contrib] Re: Breaks the circular dependencies between app, user, valuestore and (issue522803)

2010-05-24 Thread rjrjr
Yes, util is gone, I'll delete it and the offending line. As we discussed, I won't submit this until I have a parallel patch for addon-gwt in Roo http://gwt-code-reviews.appspot.com/522803/diff/1/44 File /bikeshed/src/com/google/gwt/requestfactory/shared/impl/RequestDataManager.java (right):

[gwt-contrib] Re: Breaks the circular dependencies between app, user, valuestore and (issue522803)

2010-05-24 Thread rjrjr
http://gwt-code-reviews.appspot.com/522803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8203 committed - Breaks the circular dependencies between app, user, valuestore and...

2010-05-24 Thread codesite-noreply
Revision: 8203 Author: rj...@google.com Date: Mon May 24 14:18:21 2010 Log: Breaks the circular dependencies between app, user, valuestore and requestfactory. Does so by eliminating the app.util package by: * moving IsWidget to com.google.gwt.user.client.ui * moving everything else, all of which

[gwt-contrib] [google-web-toolkit] r8204 committed - [GFlow] Supporting break statement outside of loops....

2010-05-24 Thread codesite-noreply
Revision: 8204 Author: sp...@google.com Date: Mon May 24 15:16:48 2010 Log: [GFlow] Supporting break statement outside of loops. Review at http://gwt-code-reviews.appspot.com/553801 Review by: aizat...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8204 Modified: