Re: GWT: browse files on the server-side

2011-03-14 Thread Natalie.Lawrey
Exactly Greg, you have already assured me on that way (also map with additional info isn't bad idea). Thanks Natalie On Mar 11, 6:16 am, GregD gre...@gmail.com wrote: Well, the RPC approach seems like a very straightforward way to go. Have a command that takes a String as an argument (the

Error in MapWidget

2011-03-14 Thread Ahmed Shoeib
hi all, i am trying to add MapWidget to VerticalPanel but the map added on the left corner the image http://www.4shared.com/photo/zSoEo2LB/Screenshot.html and i added marker and the marker should be centered on the image i can't see the marker when i load the map . i should navigate to this

GWT 2.2 CellTable sorting

2011-03-14 Thread Jerome Thoma
Hi everyone, I recently upgraded to GWT and I am currently adding table sorting to my application. Everything works fine except that after a refresh of my data, no sorting is applied until the user clicks on the column header. I am using a ListDataProvider and neither adding data to the list

Re: Syncronize hovered rows in two cellTables

2011-03-14 Thread Musicman75
Back from holiday :-) Thanks for your reply. I tried to implement things like you described. Setting the hovering row doesn't work, because I can't access the property. Now I tried to dispatch an event on each table to handle the hovering. Therefore I've to change the event target. Otherwise The

Re: image gallery with celltable or celllist

2011-03-14 Thread Ramon Salla
Any suggestion about how to create an image gallery for hundreds of images? -- 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

Re: java.util.ConcurrentModificationException after installing GWT 2.2

2011-03-14 Thread tdk
On 10 Mrz., 17:11, Flueras Bogdan flueras.bog...@gmail.com wrote: Is this the whole stacktrace? Are you sure it's not your code who modifies some map while iterating over it? yes, this is the whole stack trace. yes, I'm sure I'm not modifing some map while iterating. -- You received this

GWT Graphics (SmartGWT)

2011-03-14 Thread Michael S.
Hi, I try to make a graphical Interface, where people can order tickets for a concert. Now my problem is that I want to visualize it. The Location has over 5000 Seats. I make a rectangle for every seat. Just to keep it simple. Then i added it to a VerticalPanel. That works fine. But it takes

Re: Hyperlink: Why the anchor element is nested into a div ?

2011-03-14 Thread Jake
Most likely to give it display:block behavior You can use InlineHyperlink if you don't want the wrapping div On Mar 12, 9:17 am, Simon M si...@majou.org wrote: I am curious to know. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

file appending in gwt

2011-03-14 Thread kedar vyawahare
Hi all, I m new to GWT. I just want to append to a file in gwt. please help me. Thanks in Advance ] Kedar. -- 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

gwt-gadget.jar version new version

2011-03-14 Thread dberg
Hi All, I've got a question about the gwt-gadget.jar library. We just discovered, that the gwt gadget support is since july 2010 on version 1.2.0 and is still on GWT 2.0.3. Is there an update planned to GWT 2.2.1?? Is gwt-gadget.jar still supported and developed on? Thanks for your informations

Re: Any function to catch the Module Unload event?

2011-03-14 Thread felix.w
Hi amarasat, On the client side you could implement com.google.gwt.user.client.Window.ClosingHandler and override its onWindowClosing(ClosingEvent e) method, where you call a method on the rpc-service. You'll probably also have to deal with a session-timeout in the service implementation, in

SmartGWT using Netbeans

2011-03-14 Thread ines gharbi
Hi everyone, I'm Ines a new member of this group and a new GWT user . I have a question please. I started working with SmartGWT. I want to add the SmartGWT widgets to the palette of Netbeans and use the drag-and-drop to construct my GUI (like in Swing (Java)). Can I do it? If Yes, How? . Thank

Eclipse Tools

2011-03-14 Thread richip
If you were to create a GWT application that uses Spring (using, say, Spring4GWT) and HIbernate on Eclipse and you had Eclipse IDE for JEE Developers, GWT Designer plugin, Hibernate Tools plugin and Spring IDE plugin installed, how would you create the project? Or what's the best way to start the

How can I put Hyperlinks inside a CellTable, which behave the same as the Hyperlink widget?

2011-03-14 Thread Jake
I want to create a CellTable with a column of Hyperlinks. I'm trying to get the same behavior as the Hyperlink widget - e.g.: If you click it, it'll call History.newItem(), but a user is also able to do 'right-click, open link in new window'. The two possibilities seem to be 1) put plain text

Re: Gwt file upload

2011-03-14 Thread brucko
javabuddy, I don't believe Appengine will give you write access to the file system on the server. I think you are restricted to using the datastore and Blobs On Mar 13, 10:21 am, javabuddy javabu...@gmail.com wrote: Any help!!! On Mar 11, 10:01 am, javabuddy javabu...@gmail.com wrote:

Re: Eclipse plugin problem with OSX Java update 4?

2011-03-14 Thread JSwinger
Thanks Stefaan for the link. I followed Shengta's solution and that worked for me. -- 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,

Re: Making GWT 2.2 work in eclipse 3.4

2011-03-14 Thread Scott Selikoff
Excellent solution, worked for me. Granted it would be good know what side effects disabling the requirement could have. Also, it would be nice if Google fixed the GWT 3.4 Eclipse build since it doesn't work for many (all?) Eclipse 3.4 instances. -- You received this message because you are

Re: PNGs breaking the build on Linux (GWT 2.1.0)

2011-03-14 Thread Petru Dimulescu
Hi, have you solved this problem? On Feb 24, 11:18 pm, Nick nick.tay...@gmail.com wrote: Hi, I've got a GWT 2.1 project that has some transparent 8-bit PNGs as resources. I'm developing on Mac OS X Snow Leopard, and building/ packaging my project (with Maven) works fine. But when I upload it

Add icon to Button

2011-03-14 Thread Marco Gadaleta
Hi, i'm try to add icon to a button using gwt. Someone can help me? Thx, Marco -- Marco -- 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

Grouping Table Implementation

2011-03-14 Thread Jerome Thoma
Hi everyone, I am currently trying to figure out how to best implement a grouping table in GWT 2.2 and i am wondering if anyone has a good idea or some experience from a similar task. The idea is to develop a tabular view of say addresses that are ordered by one column (e.g. street) and all

Re: Web Application .launch configuration on a Mac adds -d32 -xstartOnFirstThread to VM ARGS

2011-03-14 Thread Ronan Quillevere
Found a workaroud here http://code.google.com/p/googleappengine/issues/detail?id=4712 On 13 mar, 15:30, Ronan Quillevere ronan.quillev...@gmail.com wrote: I have the same pb. Cannot make it work either on Eclipse 3.5.2 64bits. Always get a 138 error even when I change the flag to -d64 -- You

Re: Add icon to Button

2011-03-14 Thread Fotos Georgiadis
You can use a PushButton which accepts an image as an upFace / downFace. See the documentation if you want to create it programmatically: http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/user/client/ui/PushButton.html And here is a (really) short example using uiBinder:

Re: GWT Graphics (SmartGWT)

2011-03-14 Thread Uemit
There are several ways to solve that. 1.) Doing it HTML way (the way you did it). I am not sure why it takes 20 seconds (btw how did you create the rectangles?). You might look into the cell widgets ( they provide better performance for dynamically creating large amounts of cells). 2.)

Re: Cell Table Set Sortable method not showing /working

2011-03-14 Thread John LaBanca
Are you using GWT 2.2? It was only introduced in the latest version of GWT. Thanks, John LaBanca jlaba...@google.com On Sun, Mar 13, 2011 at 11:35 PM, junaid juna...@gmail.com wrote: Hi , I have a cell table column name *TitleColumn* i want to sort that ,as per the example here

Re: image gallery with celltable or celllist

2011-03-14 Thread John LaBanca
Thanks, John LaBanca jlaba...@google.com On Sun, Mar 13, 2011 at 2:27 PM, Ramon Salla rsal...@gmail.com wrote: I am wondering how to use CellTable to have a blazing fast image gallery. Le't me explain my idea for a fixed N image column table with hundreds of rows. 1.- Ask to server for a

Re: How can I put Hyperlinks inside a CellTable, which behave the same as the Hyperlink widget?

2011-03-14 Thread John LaBanca
You can render an anchor tag with a no-op href: a href=javascript:;Click Me/a In your Cell, catch the click event and call History.newItem(myToken). This is basically what the Hyperlink Widget does. Thanks, John LaBanca jlaba...@google.com On Sat, Mar 12, 2011 at 1:07 PM, Jake

GWT Eclipse Plugins gives errors in eclipse error log. As a consequence I can not disable certain other plugins (not from google).

2011-03-14 Thread stuckagain
Hi, My log in eclipse is full with errors about the GWT Eclipse Plugin: One Import statement is incorrect: Both feature and plug-in ID are either null or specified. Feature location: file:/C:/Development/eclipse/features/com.google.gdt.eclipse.suite.e36.feature_2.2.0.v201102111811/feature.xml

Re: GWT 2.2 CellTable sorting

2011-03-14 Thread John LaBanca
If you are using an AsyncDataProvider, call CellTable#getColumnSortList() when you refresh the data to get the currently sorted column, then request the data in sorted order. If you are using a ListDataProvider, you can sort the list manually at any time: Collections.sort(dataProvider.getList(),

Re: Grouping Table Implementation

2011-03-14 Thread Raphaël Brugier
Yes, we did a similar thing just last week. Just use cellTable.setRowSpan(row, colum, depth) on the cell you want to group and then delete the cell on the next row using cellTable.deleteCell(row, cell). This is just the normal way to group cells in a html table but using the cellTable api. --

Re: NativePreviewHandler doesn't catch ONBLUR events on TextBox

2011-03-14 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=1431 -- 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: Can CellWidgets contain custom composite widgets ?

2011-03-14 Thread Robert Pazurek
Could anyone please explain why it is not possible to use edit widgets in a cell? If can see the solution with the getElement() working, but it is at best cumbersome and at worst a lot of hacking getting your custom widgets to work properly. The high performance argument can not really

Re: gwt-gadget.jar version new version

2011-03-14 Thread Eric Ayers
You'll have to rebuild it yourself for now. I've been working on an update to the Gadget linker that I want to finish before release a version build against GWT 2.2. On Sun, Mar 13, 2011 at 9:51 AM, dberg mumin...@gmail.com wrote: Hi All, I've got a question about the gwt-gadget.jar library.

Re: NativePreviewHandler doesn't catch ONBLUR events on TextBox

2011-03-14 Thread Nicolas Wetzel
Thanks Thomas! On Mon, Mar 14, 2011 at 4:38 PM, Thomas Broyer t.bro...@gmail.com wrote: See http://code.google.com/p/google-web-toolkit/issues/detail?id=1431 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: GWT in Eclipse class load order

2011-03-14 Thread azuniga
/** * */ package com.gwt.ReportGeneration.server; import org.eclipse.birt.report.engine.api.EngineException; import com.google.gwt.user.server.rpc.RemoteServiceServlet; import com.gwt.ReportGeneration.client.ReportGenerationService; /** * @author azuniga * */ public class

Adding event handlers to elements in HTML-style UiBinder

2011-03-14 Thread Steve C
I finally managed to find a way to do this, but am in no way sure if I haven't left a problem lurking somewhere underneath. I had a table containing form elements that I wanted to use as a UiBinder template. I didn't need event handling for most inputs, but did want a click handler for a button.

Re: Development mode vs web mode URL discrepancy

2011-03-14 Thread cri
Google GWT folks... Any help at all on this? On Mar 4, 12:20 pm, cri chuck.irvine...@gmail.com wrote: I saw another post on this subject, but there wasn't a satisfactory answer for me. So... I find it very unfortunate that my GWT application URLs are not consistent between development mode

Re: GWT in Eclipse class load order

2011-03-14 Thread Juan Pablo Gardella
Can you share a sample that I can reproduce your error. It seems classloader issue. Juan 2011/3/14 azuniga alessandro.zun...@gmail.com /** * */ package com.gwt.ReportGeneration.server; import org.eclipse.birt.report.engine.api.EngineException; import

Re: How can I put Hyperlinks inside a CellTable, which behave the same as the Hyperlink widget?

2011-03-14 Thread David Chandler
You can also make a HyperlinkCell: /** * {@link Cell} that wraps a {@link Hyperlink} * WARNING: make sure the contents of your Hyperlink really are safe from XSS! */ public class HyperlinkCell extends AbstractCellHyperlink { @Override public void

Re: Adding event handlers to elements in HTML-style UiBinder

2011-03-14 Thread Y2i
If you have ui:field, why are you not using @UiHandler? http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Simple_binding -- 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: Adding event handlers to elements in HTML-style UiBinder

2011-03-14 Thread Thomas Broyer
@UiHandler only works on widgets! Steve: your code looks good. You don't need the Element.as() though. -- 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

PopupPanel doesnt seem to work

2011-03-14 Thread carolinegr
My code is this: AsyncCallbackString callback = new AsyncCallbackString() { public void onFailure(Throwable caught) { Window.alert(async failed!); } public void onSuccess(String reply)

Need Help for gwt-rpc mysql database connectivity

2011-03-14 Thread Dilip Rathod
I can gwt-rpc communication with server sucessfully. but when i want to interact with mysql I get following error com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. I added mysql connector to WEB-Inf/lib dierctory following is

Getting child window(s)

2011-03-14 Thread Ice13ill
Is it possible to get a handle to the windows opened by a certain window ? For example, i have an anchor element with a href and a target that opens a new window at some point. Can i access that window (for ex a method like getChildWindows()'? Or by opening a window with an anchor, i automatically

Re: PopupPanel doesnt seem to work

2011-03-14 Thread Jeff Larsen
popup#setState() attaches/removes itself to/from the RootPanel, so attaching it yourself won't work. Have you tried to find the popuppanel with something like firebug? Could it be getting hidden behind something with a high z-index? -- You received this message because you are subscribed

Re: Getting child window(s)

2011-03-14 Thread Ben Imp
You can hold onto a handle in pure JS. http://www.w3schools.com/jsref/met_win_open.asp I don't believe GWT gives you a way to access this handle, however. -Ben On Mar 14, 2:19 pm, Ice13ill andrei.fifi...@gmail.com wrote: Is it possible to get a handle to the windows opened by a certain

Re: Load javascript on the fly

2011-03-14 Thread Simon M
For reference a fine solution is here : http://technowobble.blogspot.com/2010/06/how-to-integrate-facebooks-javascript.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Need Help for gwt-rpc mysql database connectivity

2011-03-14 Thread Juan Pablo Gardella
This help? http://stackoverflow.com/questions/2297356/mysqlnontransientconnectionexception-in-jdbc-program-at-run-time http://stackoverflow.com/questions/2297356/mysqlnontransientconnectionexception-in-jdbc-program-at-run-time Juan 2011/3/14 Dilip Rathod rathod...@gmail.com I can gwt-rpc

Re: DropDown Button

2011-03-14 Thread Marco Gadaleta
Nothing??? On Wed, Mar 9, 2011 at 1:53 PM, gadaleta.marco gadaleta.ma...@gmail.comwrote: hello everyone, there a way to create a button in gwt like gmail more actions button without using external library? Thx, hope you can help me. -- Marco -- You received this message because you

Re: Need Help for gwt-rpc mysql database connectivity

2011-03-14 Thread Ben Imp
I am quite curious how it is that you can not have access to the server side stack trace. I suspect the answer to your question lies there. -Ben On Mar 14, 7:04 am, Dilip Rathod rathod...@gmail.com wrote: I can gwt-rpc communication with server sucessfully. but when i want to interact with

Re: DropDown Button

2011-03-14 Thread Juan Pablo Gardella
+1 2011/3/14 Marco Gadaleta gadaleta.ma...@gmail.com Nothing??? On Wed, Mar 9, 2011 at 1:53 PM, gadaleta.marco gadaleta.ma...@gmail.comwrote: hello everyone, there a way to create a button in gwt like gmail more actions button without using external library? Thx, hope you can help me.

Re: DropDown Button

2011-03-14 Thread Marco Gadaleta
? On Mon, Mar 14, 2011 at 9:12 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: +1 2011/3/14 Marco Gadaleta gadaleta.ma...@gmail.com Nothing??? On Wed, Mar 9, 2011 at 1:53 PM, gadaleta.marco gadaleta.ma...@gmail.comwrote: hello everyone, there a way to create a button in

Re: GWT in Eclipse class load order

2011-03-14 Thread azuniga
I was trying to make a small sample to send to you since I can't send most of my source code but while trying to recreate the issue with a sample application i was unable to. It sounds strange but now the program doesn't complain about the missing class, but I do get warnings about jar files. I

Re: DropDown Button

2011-03-14 Thread Gal Dolber
This is what I am using, you can put anything inside the PopupButton and it will be the popup content. /** * How to use: * j:PopupButton ui:field=settings text=Tools ▼ g:HTMLPanel visible=false div class=P5a href=#!settingsSettings/a/div div class=P5a href=#!logoutLogout/a/div

Re: DropDown Button

2011-03-14 Thread Gal Dolber
that looks pretty ugly in the email, here is the pastebin http://pastebin.com/rqgZk9D0 On Mon, Mar 14, 2011 at 5:28 PM, Gal Dolber gal.dol...@gmail.com wrote: This is what I am using, you can put anything inside the PopupButton and it will be the popup content. /** * How to use: *

Re: DropDown Button

2011-03-14 Thread Jim Douglas
Make a button with text and a dropdown arrow on the face, react to the button click by showing an autohide popup panel containing a menubar at the appropriate location. Implementation details left an an exercise for the student. On Mar 14, 1:12 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com

Re: Load javascript on the fly

2011-03-14 Thread brucko
I believe you will be prevented from loading the facebook script with GWT due to the browser single source policy. The other suggestions I think are your best option for loading the script - of course you can always call init from GWT. On Mar 14, 9:46 am, Simon M si...@majou.org wrote: Yes that

Re: How can I put Hyperlinks inside a CellTable, which behave the same as the Hyperlink widget?

2011-03-14 Thread Greg Dougherty
Does that allow for right-clicking? Because high on my list of HTML Tricks the piss me off is when websites have javascript links rather than real links that I can select, and do an Open New Tab / Open New Window. Greg On Mar 14, 9:58 am, John LaBanca jlaba...@google.com wrote: You can render

Re: Upgrading from 2.1 to 2.2 and changing environment

2011-03-14 Thread Greg Dougherty
3. Does GWT support running on an embedded web server on Linux ? The only choice I get is run as a web application on external server ? If you want to run on your own server, turn off AppEngine. Greg On Mar 14, 4:34 pm, BobbyGrace oskare...@gmail.com wrote: I've had my project running

Stop keyboard events

2011-03-14 Thread Magno Machado
Is it possible to prevent a key from being pressed on an textbox? -- Magno Machado Paulo http://blog.magnomachado.com.br http://code.google.com/p/emballo/ -- 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 service that transforms a HTTP request including running javascript

2011-03-14 Thread Y2i
V8 or Rhino? http://en.wikipedia.org/wiki/Server-side_JavaScript (Disclaimer: I've never done this except simple JSON parsing on the server using org.json) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: External Images in CellTable cell

2011-03-14 Thread DD
If using the ImageCell, how do we add the image attribute to it in gwt 2.1? (eg. img src= width= , height= alt ... ) Thanks On Mar 11, 7:41 am, John LaBanca jlaba...@google.com wrote: Take a look at ImageCell.  You can use that directly, or use it as an example of including an image with an

Re: GWT service that transforms a HTTP request including running javascript

2011-03-14 Thread fred at large
thanks,which way to jump was hindering me, so Rhino, as a java code, should be able to package it into gwt server environment (I think - still learning!!) I kinda suspected google may already have something implemented, as in there are app scripts in spreadsheets, and sites. But those are not

GWT service that transforms a HTTP request including running javascript

2011-03-14 Thread fred at large
is it possible for a GWT service implementation to fetch a http url and run its javascript so the output can be transformed and then returned as a reduced http result string. the javascript includes Spry.Data stuff, which is another reason why to process it on the server. This means server

Upgrading from 2.1 to 2.2 and changing environment

2011-03-14 Thread BobbyGrace
I've had my project running on a Windows computer using Eclipse 3.6 and GWT 2.1 This day I set up Eclipse 3.5 and GWT 2.2 on my Ubuntu comp, using the Eclipse version from official repositories and the GWT plugin from the update site (http://dl.google.com/eclipse/plugin/3.5). First time I

Can not run GWT application?

2011-03-14 Thread Quoc Hoan
I created a GWT hello project following these instruction in this document: http://lkamal.blogspot.com/2008/09/java-gwt-servlets-web-app-tutorial.html but there were some errors when I deployed: Missing required argument 'module[s]' Google Web Toolkit 2.2.0 DevMode [-noserver] [-port port-number

how to add attributes in ImageCell (GWT 2.1)

2011-03-14 Thread DD
I've attached an imageCell as a column in Celltable (GWT 2.1). What is the best approach to add width/height attribute in img tag generated from imageCell? (eg. img src='...' width='20px' height='21px') etc. Thank you. -- You received this message because you are subscribed to the Google

no corresponding field in template file

2011-03-14 Thread xdzgor
Hi I started up Eclipse today, and suddenly my GWT project is giving me weird errors like field xxx has no corresponding field in template file Yet I can see it does (as it did yesterday, where it compiled fine!) I tried restarting Eclipse, and performing a clean, but this did not help. I

cell table pagin not working

2011-03-14 Thread junaid
Hi , I am trying to have celltable paging on my gwt cell table paging by using the code given in GWT SHOW CASE SimplePager pager; SimplePager.Resources pagerResources = GWT .create(SimplePager.Resources.class); pager = new SimplePager(TextLocation.CENTER, pagerResources, false, 0,

column color change mehtod not working

2011-03-14 Thread junaid
Hi I want to change the color of one of my column in my cell table for which i am using ctJobs.addColumnStyleName(1, bluetext);ctJobs is my celltable name. but its not giving any result any suggestions please thanks -- You received this message because you are subscribed to the

Re: cell table pagin not working

2011-03-14 Thread junaid
Its working now ,i havent add it to my vertical panel but now the issue is it showing the record of 1to 3 suppose but when i click next it doesnt shows the next records like 3 to 6.. any suggestions .. thanks On Tue, Mar 15, 2011 at 2:52 AM, junaid juna...@gmail.com wrote: Hi , I am trying to

Re: Need Help for gwt-rpc mysql database connectivity

2011-03-14 Thread Dilip Rathod
I cannot connect to database in development mode/hosted mode. my environment: eclipse hellio 3.6, fedora 12, mysql, gwt2.2. I could successfully connect to mysql using JSP using same environment. On Tue, Mar 15, 2011 at 1:33 AM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: This

[gwt-contrib] Re: Promotes Gin's AsyncProvider to GWT, along with a more general (issue1387801)

2011-03-14 Thread bobv
LGTM. http://gwt-code-reviews.appspot.com/1387801/diff/5/user/src/com/google/gwt/core/client/AsyncProvider.java File user/src/com/google/gwt/core/client/AsyncProvider.java (right):

[gwt-contrib] Re: Fixing touch scrolling support for devices that support it natively. Our current touch support o... (issue1369809)

2011-03-14 Thread jlabanca
ping http://gwt-code-reviews.appspot.com/1369809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix problem with user-agent based locale selection (issue1382803)

2011-03-14 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1382803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-14 Thread jlabanca
http://gwt-code-reviews.appspot.com/1294801/diff/17001/user/src/com/google/gwt/user/client/ui/Frame.java File user/src/com/google/gwt/user/client/ui/Frame.java (right): http://gwt-code-reviews.appspot.com/1294801/diff/17001/user/src/com/google/gwt/user/client/ui/Frame.java#newcode78

[gwt-contrib] [google-web-toolkit] r9849 committed - creating the 2.3 release branch

2011-03-14 Thread codesite-noreply
Revision: 9849 Author: mrruss...@google.com Date: Mon Mar 14 08:33:12 2011 Log: creating the 2.3 release branch http://code.google.com/p/google-web-toolkit/source/detail?r=9849 Added: /releases/2.3 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] HasDataPresenter's SchedulerImpl coupling

2011-03-14 Thread John LaBanca
Thats fine with me. You could also create a protected HasDataPresenter#scheduleCommand() method and just override it in your mock unit test version. Thanks, John LaBanca jlaba...@google.com On Sun, Mar 13, 2011 at 11:12 PM, Stephen Haberman stephen.haber...@gmail.com wrote: Hi, I was

[gwt-contrib] Re: Promotes Gin's AsyncProvider to GWT, along with a more general (issue1387801)

2011-03-14 Thread Ray Ryan
[+google-...@googlegroups.com] What dependency? DI is a pattern, not a commitment to a particular framework. That said, I agree that taking AsyncProvider from Gin is a bit presumptuous. I meant to include the gin community on this patch, adding them now. What do you think, folks? The goal here

[gwt-contrib] Re: Adding a new annotation SafeHtmlTemplates.SafeForCss to specify that a parameter is known to be ... (issue1384801)

2011-03-14 Thread jlabanca
http://gwt-code-reviews.appspot.com/1384801/diff/3003/user/src/com/google/gwt/safecss/shared/SafeCssProperties.java File user/src/com/google/gwt/safecss/shared/SafeCssProperties.java (right):

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-14 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1294801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-14 Thread pdr
http://gwt-code-reviews.appspot.com/1294801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-14 Thread jlabanca
iframetest.html still looks weird. I'll assume it looks correct on your system. http://gwt-code-reviews.appspot.com/1294801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding a new annotation SafeHtmlTemplates.SafeForCss to specify that a parameter is known to be ... (issue1384801)

2011-03-14 Thread jlabanca
http://gwt-code-reviews.appspot.com/1384801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-14 Thread pdr
http://gwt-code-reviews.appspot.com/1294801/diff/17001/user/src/com/google/gwt/user/client/ui/Frame.java File user/src/com/google/gwt/user/client/ui/Frame.java (right): http://gwt-code-reviews.appspot.com/1294801/diff/17001/user/src/com/google/gwt/user/client/ui/Frame.java#newcode78

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-14 Thread pdr
http://gwt-code-reviews.appspot.com/1294801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-14 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1294801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing touch scrolling support for devices that support it natively. Our current touch support o... (issue1369809)

2011-03-14 Thread jlabanca
http://gwt-code-reviews.appspot.com/1369809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing touch scrolling support for devices that support it natively. Our current touch support o... (issue1369809)

2011-03-14 Thread pdr
I had reviewed this after all, but forgot to click send. D'oh! Sorry for the delay. http://gwt-code-reviews.appspot.com/1369809/diff/4001/user/src/com/google/gwt/event/dom/DomEvent.gwt.xml File user/src/com/google/gwt/event/dom/DomEvent.gwt.xml (right):

[gwt-contrib] Re: Fixing touch scrolling support for devices that support it natively. Our current touch support o... (issue1369809)

2011-03-14 Thread jlabanca
http://gwt-code-reviews.appspot.com/1369809/diff/4001/user/src/com/google/gwt/event/dom/DomEvent.gwt.xml File user/src/com/google/gwt/event/dom/DomEvent.gwt.xml (right): http://gwt-code-reviews.appspot.com/1369809/diff/4001/user/src/com/google/gwt/event/dom/DomEvent.gwt.xml#newcode3

[gwt-contrib] Re: Adding a new annotation SafeHtmlTemplates.SafeForCss to specify that a parameter is known to be ... (issue1384801)

2011-03-14 Thread skybrian
Seems basically fine. I'm just wondering if we're missing anything. http://gwt-code-reviews.appspot.com/1384801/diff/3003/user/test/com/google/gwt/safehtml/client/SafeHtmlTemplatesTest.java File user/test/com/google/gwt/safehtml/client/SafeHtmlTemplatesTest.java (right):

[gwt-contrib] Re: Fixing touch scrolling support for devices that support it natively. Our current touch support o... (issue1369809)

2011-03-14 Thread pdr
On 2011/03/14 18:29:43, jlabanca wrote: http://gwt-code-reviews.appspot.com/1369809/diff/4001/user/src/com/google/gwt/event/dom/DomEvent.gwt.xml File user/src/com/google/gwt/event/dom/DomEvent.gwt.xml (right):

[gwt-contrib] Are there any docs describing internals of gwtc?

2011-03-14 Thread Grzegorz Kossakowski
Hi, More and more often I find myself lacking the big picture of gwtc's internals. I'd like to find answers (or hints where to look for answers) for questions like: 1. What's the difference between TypeMap and TypeOracle and why they seem to have overlapping functionality? 2. Why

Re: [gwt-contrib] Are there any docs describing internals of gwtc?

2011-03-14 Thread Scott Blum
On Mon, Mar 14, 2011 at 3:03 PM, Grzegorz Kossakowski grzegorz.kossakow...@gmail.com wrote: 1. What's the difference between TypeMap and TypeOracle and why they seem to have overlapping functionality? In GWT, there are two major pieces of infrastructure that deal with representing Java

[gwt-contrib] Re: Reintroduces JsInliner patch with minor tweaks (previously submitted by cromwellian at rev 9362) (issue1386801)

2011-03-14 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1386801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Reintroduces JsInliner patch with minor tweaks (previously submitted by cromwellian at rev 9362) (issue1386801)

2011-03-14 Thread cromwellian
LGTM http://gwt-code-reviews.appspot.com/1386801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Are there any docs describing internals of gwtc?

2011-03-14 Thread Grzegorz Kossakowski
Hi Scott! Thanks for speedy and seriously awesome response! :-) Some questions inline. 2011/3/14 Scott Blum sco...@google.com: On Mon, Mar 14, 2011 at 3:03 PM, Grzegorz Kossakowski grzegorz.kossakow...@gmail.com wrote: 1. What's the difference between TypeMap and TypeOracle and why they

[gwt-contrib] Re: Adding a new annotation SafeHtmlTemplates.SafeForCss to specify that a parameter is known to be ... (issue1384801)

2011-03-14 Thread xtof
http://gwt-code-reviews.appspot.com/1384801/diff/3008/user/src/com/google/gwt/safecss/shared/SafeCssProperties.java File user/src/com/google/gwt/safecss/shared/SafeCssProperties.java (right):

[gwt-contrib] Re: Adding a new annotation SafeHtmlTemplates.SafeForCss to specify that a parameter is known to be ... (issue1384801)

2011-03-14 Thread jlabanca
http://gwt-code-reviews.appspot.com/1384801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding a new annotation SafeHtmlTemplates.SafeForCss to specify that a parameter is known to be ... (issue1384801)

2011-03-14 Thread jlabanca
http://gwt-code-reviews.appspot.com/1384801/diff/3003/user/test/com/google/gwt/safehtml/client/SafeHtmlTemplatesTest.java File user/test/com/google/gwt/safehtml/client/SafeHtmlTemplatesTest.java (right):

[gwt-contrib] Re: Adding a new annotation SafeHtmlTemplates.SafeForCss to specify that a parameter is known to be ... (issue1384801)

2011-03-14 Thread xtof
http://gwt-code-reviews.appspot.com/1384801/diff/6006/user/src/com/google/gwt/safecss/shared/SafeCssProperties.java File user/src/com/google/gwt/safecss/shared/SafeCssProperties.java (right):

  1   2   >