Re: How to make CellTable Header always on top

2012-05-30 Thread Kei Kei
I see the thread https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/PBhu6RtP4G8 and so I put the datagrid inside a scrollPanel (scrollPanel implements ProvidesResize) and I also set each column width (table.setColumnWidth(addressColumn, 7, Unit.EM);) but still cannot show the

Re: How to make CellTable Header always on top

2012-05-30 Thread Thomas Broyer
On Wednesday, May 30, 2012 8:40:12 AM UTC+2, tong123123 wrote: I see the thread https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/PBhu6RtP4G8 and so I put the datagrid inside a scrollPanel (scrollPanel implements ProvidesResize) and I also set each column width

Re: How to make CellTable Header always on top

2012-05-30 Thread Kei Kei
I really get confused. in my result page, the hierarchy of widget is DialogBox encloses TabLayoutPanel encloses FlexTable, the FlexTable has three rows. in the first row, after I add a SimpleLayoutPanel with setSize(100%, 360px); and then encloses the DataGrid inside SimpeLayoutPanel, the DataGrid

Re: GWT Mobile App Widgets

2012-05-30 Thread dominikz
We're having the same problem. We're developing a system to support conferences (http://agenda.genijusz.com). Unfortunately we have the same requirement as you - to support as many phones as possible. Therefore we could not use libraries that are webkit-based. We needed to do everything by

Re: the gwt-PopupPanelGlass height increase unexpectedly

2012-05-30 Thread Thomas Broyer
On Wednesday, May 30, 2012 11:09:39 AM UTC+2, tong123123 wrote: as show in the image, beforesearch, there is no scrollbar in the right hand side, and then press search, in the searching.png, it show a warning message, and after press ok, the result is shown (result.png), but one point

Re: the gwt-PopupPanelGlass height increase unexpectedly

2012-05-30 Thread tong123123
*I found if the record exceed 100 warning is not shown even the search result record is really 100 (Searching.png), the glass is shown property and the scrollbar in the background document will not be shown.* in show count warning, I set GlassEnabled(true) and AnimationEnabled(true) and then

Re: GWT Mobile App Widgets

2012-05-30 Thread maticpetek
On Monday, April 30, 2012 4:35:30 PM UTC+2, AgitoM wrote: Does anyone know a decent library that contains GWT Widgets for the development of Mobile Apps in GWT? Over the past few days I've been experimenting with gwt-mobile-gui. Though this library is great, it doesn't appear to be

Re: GWT Mobile App Widgets

2012-05-30 Thread maticpetek
Hi, We are now doing rewrite our mobile application from GWT to (jQueryMobile + operation logic in GWT + GWTQuery). I really like functionality and documentation on JQM. And also themes and transition between pages really works on Android and iOS. They have good community and useful plugins.

Re: Debugging is terribly slow

2012-05-30 Thread maticpetek
Hi, For our project I also give up debugging with FF. The whole process - start project in Eclipse, hosted mode in FF, debug, fix code, refresh hosted mode, etc just took too much time. Now I'm testing JRebel + System.err.println and it really speed up development and debug time. Regards,

Re: Large Project Structure

2012-05-30 Thread Niraj Salot
Some more details.. Can I have the structure like this way: Core - - Client - Server - Shared Account - Client - Server - Shared Billing - Client - Server - Shared User - Client - Server - Shared like this many more. Each module will have it;s own POM.xml and there will be one overall

How to apply css file to html content within HTML widget?

2012-05-30 Thread July
Hello: At client side my page contain a com.google.gwt.user.client.ui.HTML, this HTML will contain a large number of div and each div is associated with its own style. all the styles are defined in another css file. My question is how to apply the style to the HTML content? i use g:HTML

Re: How to apply css file to html content within HTML widget?

2012-05-30 Thread swathi
try like this: ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:gwt='urn:import:com.google.gwt.user.client.ui' ui:style src=project_entry.css / On Wed, May 30, 2012 at 6:55 PM, July julyg...@gmail.com wrote: Hello: At client side my page contain a

Re: Debugging is terribly slow

2012-05-30 Thread Dimitrijević Ivan
It is sad but FF has much better performances when GWT debugging is the subject. I hope that GWT 2.5 will come up with SourceMaps support so debugging will not require any additional plugin. So a new FF versioning approach as well as other incompatibility issues will be solved. On Wednesday,

Re: Debugging is terribly slow

2012-05-30 Thread Thomas Broyer
On Wednesday, May 30, 2012 3:59:26 PM UTC+2, Dimitrijević Ivan wrote: It is sad but FF has much better performances when GWT debugging is the subject. I hope that GWT 2.5 will come up with SourceMaps support so debugging will not require any additional plugin. So a new FF versioning

Re: How to apply css file to html content within HTML widget?

2012-05-30 Thread July
Thanks for the reply, this is what i do, however no effect. it will generate html like: div class=project_entry.css ... /div but it will not apply the style from the file to the div element automatically. Do i have to style each class in the div one by one? On Wednesday, May 30, 2012 9:44:20

Re: How to apply css file to html content within HTML widget?

2012-05-30 Thread Joseph Lust
July, Any tag in a UiBinder can have a CSS class, but: - Native HTML tags like div must use their class attribute. So div class=somClass/ - GWT classes, like g:HTML / must use the styleName attribute, since otherwise there would be a conflict with the Java class keyword, so use

Re: GWT 2.5 and beyond

2012-05-30 Thread Handw
Good News On Friday, May 25, 2012 4:36:11 AM UTC-4, marek.gregor wrote: Finally we will know more at Google IO 2012: https://developers.google.com/events/io/sessions/gooio2012/218/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Basic Mail Using GWT UI

2012-05-30 Thread Bubby
Hi Greetings All, I have a beginner... in GWT. I have been creating User Interface using GWT. But now I want to have a basic mail application in GWT. I have to capture the information entered on the screen and send it as a mail. Can anyone help me in doing this... I have been trying to do this

Add HTMLelement from entry Point class

2012-05-30 Thread Vivek MS
I have a `div` in my HTML page. What I need to do is, add `ul` element inside it from my Entry point class. I have tried from onModuleLoad function using below code, UListElement ul=Document.get().createULElement(); ImageElement img=Document.get().createImageElement();

GWT with RPC

2012-05-30 Thread Mariah Carey
hello all, I have been developing upload a file to my server using RPC, I found a couple of examples that force me to override the service method. When compiling tells me it can not Overriding is an abstract method ... what I can do about it? Thanks: D -- You received this message because you

Re: GWT Browser Dev-Plugin

2012-05-30 Thread razor
just get it straight from SVN. http://google-web-toolkit.googlecode.com/svn-history/trunk/plugins/ie/prebuilt/ It just looks like the latest build hasn't been copied to the dl-ssl server. On May 22, 5:15 am, Fabio safesfa...@gmail.com wrote: Hi All, I get an error 404 while downloading GWT

Re: Can't download a GWT Plug In For IE

2012-05-30 Thread 绍正 吴
http://download.csdn.net/detail/tigerq326/2401980 useful On 5月24日, 上午1时21分, David dhy...@gmail.com wrote: I cleared my IE cache and now I can't download anew GWT Plugin. No matter what link I follow I am getting 404 error. Does anyone else have this issue?

synchronized object int GWT

2012-05-30 Thread Rand
hello all i am new in GWT ..and i have one question : dose it enabled to apply the concept od synchronized objects java in GWT ?? in way that i can synchronize the client and the server ? thank -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

FormPanel with FileUpload and HTML5

2012-05-30 Thread Dana McDonald
I know this will only work in Firefox and Chrome... I have access to a HTML5 Blob (JavaScripObject) through DragDrop and now I want to set the value or add it to FileUpload. I'm wanting to do this all with HTML Forms and direct communication with the Browser to Amazon S3 bypassing any server:

GWT PopupPanel Safari Mobile auto hide

2012-05-30 Thread Osama Alawnah
I trying to create and develop new views that are specific for IPad users, and I'm facing a problem with using Popup. What I'm trying to do is that to show up some Popup and make it autohide when user touch out side it, this is working as expected when testing it using the regular desktop

favicon problem now that I've added call to History.newItem().

2012-05-30 Thread chrisr
Hi, I've written an application using GWT 2.4.0 (and GXT 2.2.5) that compiles to a WAR file, runs successfully in JBoss 6.0.0-Final, and also has its own favicon.ico. However, now that I am starting to add History support I am noticing that my browser is sometimes displaying JBoss's default

GWT podcasts?

2012-05-30 Thread fisher....@gmail.com
Can anyone recommend any good podcasts with some GWT content? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Help to implement behavior for popup widget.

2012-05-30 Thread regnoult axel
Hello, I do not succeed to implement condition (2) and (3) of my popup widget (it looks like a rich tooltip with links inside it) (1) the popup is shown when the mouse is over the image (*it is ok*, I added MouseOverHandler on the image) (2) the user can click on links that are inside the

DataGrid rows appear only after sort when using SimplePanel

2012-05-30 Thread Ronny Shapiro
Hello, I have found a strange behavior when using a DataGrid with SimplePanel and ListHandler. The data is not shown until I click on one of the column headers to sort the data. I tried using VerticalPanel instead and the data is shown correctly when the table is redrawn (no sort yet made). Any

how can i make I18N dynamic in gwt?

2012-05-30 Thread krrish
i'm using gwtp and i want to make my gwt application's I18N dynamic, i did something likeshowcase example is doing even though it is good i don't want reloade every time when locale is changing. so i just want to change the labels of my view when i change the locale. thanks, krrish. -- You

Question relative to popup and mouseListener...

2012-05-30 Thread regnoult axel
Hello, I have a solution I can not find. I want to create a custom widget whick looks like a kind of rich tooltip (it is a exactly a popup in my case) that appear when my mouse is over the image. I have various behaviors for this widget : (1) if the mouse is over the image so the popup appear

Re: Unable To install GWT Developer Plug in for IE

2012-05-30 Thread klimskiy
The same I have. 404 for IE9 x64. Where can I found some backedup GWT plugin for IE? Середа, 23 травня 2012 р. 21:57:15 UTC+3 користувач David написав: I am getting 404 errors for both the IE and IE 64 bit install urls. I am blocked. -- You received this message because you are subscribed

Can not add CellList to Pager

2012-05-30 Thread nwa...@hotmail.com
I used modifed CwCellList example to display custom Cells in a pager, I couldn't display and scroll the celllist inside Pager, here is the code for Pager: public class PagerPanel extends AbstractPager { /** * The default increment size. */ private static

add timer on panel......

2012-05-30 Thread Harshal Patil
Hello Can anyone plz help me to create timer and how to add it on the panel? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/3D-fqY8mtZAJ. To

Dialog box without theme has no caption area at the top

2012-05-30 Thread regnoult axel
Hello, I do not inherit of any theme (Standard, Dark, Chrome). And when I use a Dialog Box, I do not have the TOP CAPTION appearing (so I cannot move my dialog box). Any idea to help me please ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT and HttpServletResponse

2012-05-30 Thread Laszlo Fenyvesi
You need to make an other ajax call after the file is created. From the RPC call send back to the client the url pointing to the newly created file, and: static native void downloadFile(String url) /*-{ $wnd.open(url,'Download'); }-*/; Ml, fenyoapa - Eredeti üzenet - From: Akis

Re: Google IO 2012 : no GWT session ?

2012-05-30 Thread Thierry Abaléa
something big is coming (I'm afraid I can't share details, sorry) I suppose that something big does not refer to Elemental. I think that not because it is not big but because Ray Cromwell made the information public via his Google+

Customized confirmation box widget

2012-05-30 Thread Manish Goyal
Hi , I want to make a customized confirmation dialog box in GWT, searched google but not found any clue. Any help would be much appreciate. Thanks, Manish -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: gwt-user.jar not found issue

2012-05-30 Thread Kimber Yuen
same situation, cannot locate the gwt-user file RubySmith於 2010年10月19日星期二UTC+8上午6時27分15秒寫道: I just installed GWT and WindowsGUI builder eclipse plug-ins from google update site. The plug-ins does not contain gwt-user.jar and hence i could not create GWTproject. Due to this issue the GWT

Issue with Rational Software Architect 7.5

2012-05-30 Thread Roberto Hernandez
I've been trying to install the eclipse plug-in for GWT on my Rational Software Architect 7.5 installation, but it gives me an error related with dependencies. Does anyone knows if this plug-in its compatible with Rational Software Architect? Thanks. -- You received this message because you are

GWT for building websites ?

2012-05-30 Thread Simer
Hi guys Im trying to build a web application in Java ee 6 ... But i don't know which framework to use ... Struts or GWT ... ajax data load without page refresh is important for a *few pages* in the website but not all. I've been researching on building websites with GWT but it's hard to find an

need steps to debug gwt application serverside form eclipse

2012-05-30 Thread sreeram n
hi i am trying to run my eclipse to debug the server side code like async call i am getting below error Failed to connect to remote VM. Connection refused. Connection refused: connect please help me thanks regards -- You received this message because you are subscribed to the Google Groups

Re: How to apply css file to html content within HTML widget?

2012-05-30 Thread Joseph Lust
July, styleName is the name of the CSS class. Because the UiBinder syntax of g:HTML/ points to the GWT HTMLPanel class, the class keyword is replaced with styleName in this case. However, in UiBinder, if you are using native HTML tags, like DIV, then you would use the class attribute for the

Re: guice injecting remote servlet. Error 404 not found

2012-05-30 Thread Damien Irving
I have this issue also, did you find a solution for it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/aymR493mmywJ. To post to this group,

Getting started

2012-05-30 Thread KAVI ARASAN
i am new to GWT, please help me in creating and running GWT application in eclipse. i need an tutorial which give the step by step process to create the first GWT project. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Integrating existing html div tag in gwt to genrate new HTML file (from existing html)

2012-05-30 Thread Harsh
Hi i want to integrating existing html div tag in gwt to genrate new HTML file (from existing html) . 1.demo.jsp (existing html) !-- To change this template, choose Tools | Templates and open the template in the editor. -- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html

Re: Getting started

2012-05-30 Thread Assiya EL
hi if you are good in french look that : http://www.gwt-france.fr/nos-premiers-pas-en-gwt-1ere-partie 2012/5/30 KAVI ARASAN kaviit...@gmail.com i am new to GWT, please help me in creating and running GWT application in eclipse. i need an tutorial which give the step by step process to create

Re: guice injecting remote servlet. Error 404 not found

2012-05-30 Thread Ali Thabet
did you have guice-snapshot.jar in your classpath? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: FormPanel with FileUpload and HTML5

2012-05-30 Thread Joseph Lust
What have you achieved so far? I would: 1. Get the AWS POST to S3 example http://aws.amazon.com/articles/1434working with pure HTML (no GWT). 2. Recreate the same form in GWT using UiBinder or imperatively (i.e. new FormPanle()...). 3. Try sending it through the form. From long ago

Re: Add HTMLelement from entry Point class

2012-05-30 Thread Joseph Lust
Vivek, Your code works fine for me (GWT 2.4 starter project). Not sure why it is not work for you, so I think it has to be one of the following: - Are you sure the code is getting run? Perhaps you can step through with break points. - Are you sure you have the div id=divPhotosdiv/ in

Re: Question relative to popup and mouseListener...

2012-05-30 Thread Joseph Lust
Axel, Just use onMouseOut event on your popup to close it. When you open the popup, make sure it is place under the cursor at that time. If it is proving more elaborate than that, could you post code and challenges here? You can also use CSS3 transitions to easily add fade outs and delays to

Re: favicon problem now that I've added call to History.newItem().

2012-05-30 Thread Joseph Lust
Chrisr, Many browsers these days check for a favicon in the root directory. I found the same issue where I was setting the favicon in the HTML header, but some browsers were not getting it. You should make sure that you always have a favicon.ico *and *favicon.*gif *in your root directory, or

Re: Basic Mail Using GWT UI

2012-05-30 Thread Joseph Lust
Buddy, Show us your code that is not working and we'll try to help. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: add timer on panel......

2012-05-30 Thread Joseph Lust
Harshal, Why do you need to add the timer to a panel? What do you want the timer to do? It is not clear from your question. Timer timer = new Timer(); Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: how can i make I18N dynamic in gwt?

2012-05-30 Thread Joseph Lust
Krrish, GWT compiles a different permutation of the code for each language you have implemented i18n for. You thus must reload the app to load the different permutation to switch the language in use. If you want it to behave differently, you'll have to do i18n a different way than the built in

Re: GWT podcasts?

2012-05-30 Thread Joseph Lust
Besides podcasts (I assume you mean audio), there are many good GoogleIO lectures http://www.youtube.com/results?search_query=GWT+googleio on YouTube that are a staple of learning GWT. Joe -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: GWT podcasts?

2012-05-30 Thread Lee Fisher
Hi Joe, Thanks! I'm aware of most of those, but audio would be good while driving. Lee On Wed, May 30, 2012 at 4:17 PM, Joseph Lust lifeofl...@gmail.com wrote: Besides podcasts (I assume you mean audio), there are many good GoogleIO lectures

RequestFactory - how to prevent batched requests after constraint violation

2012-05-30 Thread Bill T
I am getting an IllegalArgumentException, Attempting to edit an EntityProxy previously edited by another RequestContext. This is a result of getting constraint violations and automatically batching different Request Factory requests within the RequestContext. I am using GWT 2.4. My

Re: making Anchor look like a normal link

2012-05-30 Thread Mike Dee
Actually, I made a mistake. The problem doesn't seem to be the authentication (which simply checks the session). I disabled the authentication and it still happens. I believe this is the way GWT is supposed to work. A GWT is one page. The going back and forward through pages is simulated

Re: How to apply css file to html content within HTML widget?

2012-05-30 Thread July
I solved this by using ClientBundle. On Wednesday, May 30, 2012 11:12:07 PM UTC+8, July wrote: Thanks for the reply, this is what i do, however no effect. it will generate html like: div class=project_entry.css ... /div but it will not apply the style from the file to the div element

Re: How to apply css file to html content within HTML widget?

2012-05-30 Thread July
And thanks for the explanation Joseph Lust , that's helpful. On Thursday, May 31, 2012 10:23:57 AM UTC+8, July wrote: I solved this by using ClientBundle. On Wednesday, May 30, 2012 11:12:07 PM UTC+8, July wrote: Thanks for the reply, this is what i do, however no effect. it will

Re: Basic Mail Using GWT UI

2012-05-30 Thread Fahmi
this is my code at server side for sending email (my server is google app engine).. public static void Email(String test) { DateFormat formatter ; Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); try{

Re: Getting started

2012-05-30 Thread Kanagaraj M
Eclipse GWT plugin comes with a nice and simple sample project. You are free to run without any changes. On Wednesday, 30 May 2012 18:10:48 UTC+5:30, KAVI ARASAN wrote: i am new to GWT, please help me in creating and running GWT application in eclipse. i need an tutorial which give the

Re: Basic Mail Using GWT UI

2012-05-30 Thread Kanagaraj M
It is looking like nothing to do with GWT. The problem could be more related to GAE or Mail. On Thursday, 31 May 2012 08:36:06 UTC+5:30, buzz_buzz wrote: this is my code at server side for sending email (my server is google app engine).. public static void Email(String test) {

[gwt-contrib] Re: Add Integer.TYPE, etc. (issue1710804)

2012-05-30 Thread stephen . haberman
I'll submit your change after the API Checker config file is updated. We should just need to add these lines to it: java.lang.Boolean::FALSE FINAL_ADDED java.lang.Boolean::TRUE FINAL_ADDED Great, that sounds good to me. Thanks, John. http://gwt-code-reviews.appspot.com/1710804/ --

Re: [gwt-contrib] Contributor License Agreements question

2012-05-30 Thread Alexandre Ardhuin
Ok, thanks. 2012/5/29 Rajeev Dayal rda...@google.com Just verified that you're added to the corporate CLA list. I think I was looking at an outdated spreadsheet. You're all good! On Fri May 25 10:15:54 GMT-400 2012, Alexandre Ardhuin alexandre.ardh...@gmail.com wrote: Confirmation

[gwt-contrib] Re: DefaultProxyStore violated ProxyStore#nextId contract. (issue1622803)

2012-05-30 Thread t . broyer
On 2012/05/29 22:07:38, skybrian wrote: Actually, are we working on dead code? Where is serialize/deserialize of a DefaultProxyStore used? I'm looking for the code that calls encode() and I can't seem to find it. I traced back usages of ProxyStore to RequestFactory.getSerializer() but can't

[gwt-contrib] Re: DefaultProxyStore violated ProxyStore#nextId contract. (issue1622803)

2012-05-30 Thread t . broyer
I just updated the CL with a very minor fix: in encode() I saved nextId + 1 (so as to never store a '0' and be able to detect a payload serialized by the old, broken DefaultProxyStore), but never reverted the + 1 in the constructor, resulting in skipping a value each time to serialize/deserialize

[gwt-contrib] Re: Packaging issue: org.json and RequestFactory

2012-05-30 Thread Thomas Broyer
Additional note: requestfactory-client.jar is supposed to be used on Android (not only, but that's one of the advertized goal), so it shouldn't bundle org.json, as this is already provided by the Android platform: http://developer.android.com/reference/org/json/package-summary.html As for

[gwt-contrib] Re: Generated EditorContext class names take actual parameterization into account. (issue1352806)

2012-05-30 Thread t . broyer
On 2012/05/30 01:39:13, skybrian wrote: On 2012/05/26 15:20:15, tbroyer wrote: On 2012/05/25 19:35:47, skybrian wrote: Having two levels of class nesting is rather confusing. Could you move the Driver and other 4 inner classes up a level? Done. Do you think the

[gwt-contrib] Re: Fix issue 6710: entities referenced from list of value proxies (issue1646803)

2012-05-30 Thread t . broyer
https://gwt-code-reviews.appspot.com/1646803/diff/1/user/src/com/google/web/bindery/requestfactory/server/Resolver.java File user/src/com/google/web/bindery/requestfactory/server/Resolver.java (right):

Re: [gwt-contrib] Re: Packaging issue: org.json and RequestFactory

2012-05-30 Thread Thomas Broyer
On Wed, May 30, 2012 at 12:24 PM, Ray Cromwell cromwell...@google.com wrote: For GWT 2.5, we might be able to use the elemental json implementation, it has both pure JRE and super-source implementations, and simultaneously replaces org.json and the com.google.gwt.json packages. That'd be

Re: [gwt-contrib] HELP: Generated Javascript contains wrong prototype assignments

2012-05-30 Thread Jens
Just created an issue for it on the issue tracker with an attached example project. The project contains a Place with a constructor that does not create a valid instance of that place because of missing prototype assignment. The project can be imported into eclipse and should run out of the

[gwt-contrib] Re: Add Integer.TYPE, etc. (issue1710804)

2012-05-30 Thread rdayal
On 2012/05/30 06:16:52, stephenh wrote: I'll submit your change after the API Checker config file is updated. We should just need to add these lines to it: java.lang.Boolean::FALSE FINAL_ADDED java.lang.Boolean::TRUE FINAL_ADDED Great, that sounds good to me. Thanks, John. Thanks for

[gwt-contrib] Re: Adding the GWT 2.4_2.5 API Checker configuration file. Many API changes were added to the 2.3_2... (issue1721803)

2012-05-30 Thread rdayal
LGTM. Looks like we're missing the deletion of the 23_24 config file? http://gwt-code-reviews.appspot.com/1721803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix issue 6710: entities referenced from list of value proxies (issue1646803)

2012-05-30 Thread rdayal
LGTM. https://gwt-code-reviews.appspot.com/1646803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding the GWT 2.4_2.5 API Checker configuration file. Many API changes were added to the 2.3_2... (issue1721803)

2012-05-30 Thread jlabanca
We don't delete the old files, we just add a new file. http://gwt-code-reviews.appspot.com/1721803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding the GWT 2.4_2.5 API Checker configuration file. Many API changes were added to the 2.3_2... (issue1721803)

2012-05-30 Thread t . broyer
On 2012/05/30 15:49:24, jlabanca wrote: We don't delete the old files, we just add a new file. But maybe we should revert the changes made to the 23_24 file after the 2.4 release was cut out, no? (re. Many API changes were added to the 2.3_2.4 file because we never created the 2.4_2.5 config

[gwt-contrib] Re: Adding the GWT 2.4_2.5 API Checker configuration file. Many API changes were added to the 2.3_2... (issue1721803)

2012-05-30 Thread jlabanca
That would involve creating 2.3-modified jars, syncing to the 2.4 release, and running API Checker, just to update a file that is no longer used. I'll leave it for the next guy to worry about. It's convenient to have the history of conf files when creating a new config file, even if they aren't

[gwt-contrib] Re: Adding the GWT 2.4_2.5 API Checker configuration file. Many API changes were added to the 2.3_2... (issue1721803)

2012-05-30 Thread jlabanca
committed as r11000. http://gwt-code-reviews.appspot.com/1721803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] com.google.gwt.core.client.GWTBridge

2012-05-30 Thread Jimo
Hello, I rebuilt GWT with the latest in the source tree and am now getting a class not found exception for com.google.gwt.core.client.GWTBridge in my servlet RPC implementation. Should that class exist in gwt-servlet.jar? When I add it to that jar file, the class not found exception goes

Re: [gwt-contrib] com.google.gwt.core.client.GWTBridge

2012-05-30 Thread Freeland Abbott
The workaround is to inject a server dependency on :gwt-dev, aka gwt-dev.jar, which supplies that class. It's a side effect of a refector we did recently, but I haven't reviewed for what made it become necessary where it wasn't before. On Tue May 29 16:43:48 GMT-400 2012, Jimo

Re: [gwt-contrib] com.google.gwt.core.client.GWTBridge

2012-05-30 Thread John Tamplin
On Tue, May 29, 2012 at 4:43 PM, Jimo jponei...@gmail.com wrote: I rebuilt GWT with the latest in the source tree and am now getting a class not found exception for com.google.gwt.core.client.GWTBridge in my servlet RPC implementation. Should that class exist in gwt-servlet.jar? When I add it

Re: [gwt-contrib] com.google.gwt.core.client.GWTBridge

2012-05-30 Thread Stephen Haberman
I rebuilt GWT with the latest in the source tree and am now getting a class not found exception for com.google.gwt.core.client.GWTBridge in my servlet RPC implementation. Should that class exist in gwt-servlet.jar? When I add it to that jar file, the class not found exception goes away.

[gwt-contrib] Re: Fix issue 6710: entities referenced from list of value proxies (issue1646803)

2012-05-30 Thread rdayal
https://gwt-code-reviews.appspot.com/1646803/diff/14003/user/test/com/google/web/bindery/requestfactory/gwt/client/RequestFactoryTest.java File user/test/com/google/web/bindery/requestfactory/gwt/client/RequestFactoryTest.java (right):

[gwt-contrib] Use shared.GWT to avoid ClassNotFoundExceptions (issue1722803)

2012-05-30 Thread stephen . haberman
Reviewers: rdayal, Please review this at http://gwt-code-reviews.appspot.com/1722803/ Affected files: M user/src/com/google/gwt/user/server/rpc/impl/SerializabilityUtil.java Index: user/src/com/google/gwt/user/server/rpc/impl/SerializabilityUtil.java diff --git

Re: [gwt-contrib] com.google.gwt.core.client.GWTBridge

2012-05-30 Thread Stephen Haberman
Seems like maybe SerializabilityUtil should use shared.GWT.isClient() instead? It has a setBridgeMethod too, but the type there is shared.client.GWTBridge, which is in the servlet jar, so should work. This worked. Patch is here: http://gwt-code-reviews.appspot.com/1722803 - Stephen --

[gwt-contrib] Re: Use shared.GWT to avoid ClassNotFoundExceptions (issue1722803)

2012-05-30 Thread jat
LGTM Thanks, this is one of the cases where server-side code was using code from c.g.g.*.client and it was working, but that is always going to be very dangerous. Over time, we should fix all these cases and make it so server-side code can't even see any client packages.

Re: [gwt-contrib] com.google.gwt.core.client.GWTBridge

2012-05-30 Thread Jens
Do you know what class is referencing c.g.g.client.GWTBridge? There is a shared version (which the client one derives from) that should be there, but referencing client code in the server is dangerous. You could integrate Macker (http://innig.net/macker/index.html) into your GWT ant

Re: [gwt-contrib] com.google.gwt.core.client.GWTBridge

2012-05-30 Thread John Tamplin
On Wed, May 30, 2012 at 7:09 PM, Jens jens.nehlme...@gmail.com wrote: You could integrate Macker (http://innig.net/macker/index.html) into your GWT ant script and define a rule that checks for any reference from *.server.* to *.client.* packages. May be helpful to detect such violations.

[gwt-contrib] Re: Issue 7038: CompositeEditor and ListEditor optimizations (issue1664803)

2012-05-30 Thread skybrian
I got this feedback from someone who requested a rollback but decided to work around it instead. I wonder how widespread this sort of thing is? Our use of the editor/driver stuff assumed the editors would be rebuilt when driver.edit(T) was invoked. This isn't true with this CL, as the point of

[gwt-contrib] Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-05-30 Thread skybrian
LGTM (assuming tests still pass) http://gwt-code-reviews.appspot.com/1601806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors