Templating for deferred binding / code generation

2011-03-02 Thread Harald Pehl
In my current project I'm using deferred binding to generate code. The code generation is heavily based on writer.write(String), writer.indent() and writer.outdent(): writer.write(%s = new %s%s();, var1, collectionImplementation, paramType ); writer.write(for (Element %s : %s) {,

Re: User roles in GWT applications

2011-03-02 Thread csaffi
A possible solution could be to make an RPC call to the server during onModuleLoad. This RPC call would generate the necessary Widgets and/ or place them on a panel and then return this panel to the client end. What do you think about this? -- You received this message because you are

Re: Editor with ListBox in UiBinder

2011-03-02 Thread George Moschovitis
Eh? can you elaborate on this? thanks for the help! -g. -- 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: Example to test RequestFactory in JRE

2011-03-02 Thread Thomas Broyer
Here: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/test/com/google/gwt/requestfactory/server/RequestFactoryJreTest.java -- 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: Example to test RequestFactory in JRE

2011-03-02 Thread koma
Yes, but it's got more the unresolved dependies. Why is this not in the GWT jars ? Are the test classes omitted from the packaged jar ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Accessing the new Google Recipe Database

2011-03-02 Thread Jambi
Hi there, is it possible to query somehow the new Recipe Database that Google offers? It would be cool if I could Access the Database so I could use the recipes. Unfortunately, the service is not offered in Gemany, yet. Is there an API? Any ideas? -- You received this message because you are

Custom Components Widget.getOffsetWidth

2011-03-02 Thread Jerome Thoma
Hi, I am building a custom GWT 2.1 toolbar widget that allows the insertion of spacers. The width of these spacers is adjusted so that components are always distributed evenly across the width of the toolbar (e.g. button - spacer -button - spacer -button creates a toolbar with one button left-,

Re: Editor for Primitive Types

2011-03-02 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=5864q=editor%20primitive Workaround at: http://code.google.com/p/google-web-toolkit/issues/detail?id=5544 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: How to implement custom find methods in GWT+roo scaffolding app

2011-03-02 Thread Zed
As far as I see no one is going to answer me. I found https://jira.springsource.org/browse/ROO-1595 and if I got them right there is NO custom finder methods available at this time (it's still openned). Without them I can't use generated Request object and possibly all over stuff. If you don't

Re: User roles in GWT applications

2011-03-02 Thread Lukasz
I'm doing it by providing a self-implemented UserManager object on the client. It contains the currently signed in user and provides methods for access or role checks e.g. canEditUser(). This UserManager object is an singleton injected via gin into all relevant presenters (as you see I'm also

Re: Is it possible to override a ListBox()'s functionality

2011-03-02 Thread Lukasz
If I understood correctly, you would like to validate other entries before the selection in the list... In this situation, I don't think it is necessary to extend the ListBox() functionality - you could just add a FocusHandler to the list and check the validations status there. Cheers, Lukasz On

Re: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-02 Thread Pierre
Thanks for this great article. I would be interested to hear from creators/users of the MVP frameworks out there (gwt-mvp, gwt-platform, gwt-presenter, mvp4g, etc.) about which approach is used in each of the frameworks or if the frameworks are approach-agnostic. Any approach can be used

Re: GWT 2.2 Canvas support for IE6 (GWTCanvasImplIE6)

2011-03-02 Thread Philip Rogers
Because of the difficulty of supporting IE6 fully via VML (including text, etc.) and still having reasonable performance, there aren't plans to support it at this time. The new Canvas implementation in GWT should have complete support across FF3.5, Chrome, Safari, and IE9, but there isn't a

Re: GWT 2.2 Canvas support for IE6 (GWTCanvasImplIE6)

2011-03-02 Thread Kurtt Lin
Even partially supporting is welcomed, and developers should have known about its IE6's poor performance, thus avoid rendering lots elements. Actually i want Canvas in IE 6/7/8 badly. T T On Wed, Mar 2, 2011 at 9:55 PM, Philip Rogers p...@google.com wrote: Because of the difficulty of

Re: Does GWT has any support for data binding?

2011-03-02 Thread Jeff Larsen
From 2.1 on it has databinding added. Check out the editor framework. http://code.google.com/p/google-web-toolkit/wiki/Editors -- 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: Custom Components Widget.getOffsetWidth

2011-03-02 Thread JN
There is only onLoad I think. getOffsetWidth can only give you the correct value if the element is already rendered by the browser, otherwise its zero. Its also zero if the element is attached to the DOM but display:none (or maybe display:hidden) is set on some parent element as the browser

GWT double click event on Shape type objects

2011-03-02 Thread Rujuta Deshpande
Hi, I am creating an application with drag drop functionality, using the dnd libraries. Now, i want to connect to objects that are double clicked on consecutively using the connectors from connectors library. This is working fine, but I have to add a double click event for each shape of the

Styeling a ListBox

2011-03-02 Thread K
Hi, I wish to change the way ListBox looks using CSS - Change the border color - Tried using the usual border-color:red. Worked on Firefox. No effect on IE Still the standard blue color - Change the Color of the arop down arrow. No idea how to go about doing it. regards K -- You received this

Re: How to simplify your GwtEvent classes and have fun doing it!

2011-03-02 Thread Brian Bonner
Stephen, This is *awesome*. I recently picked GWT back up...but I couldn't *stand* digging these glorified ditches called Events (and all their gorp) and Handlers. I've just started playing with it and look forward to working with @GwtEvent and @GwtDispatch. Thanks! -- You received this

Reproduce Firefox ListBox behaviour in IE

2011-03-02 Thread gigi81
I've a problem with Internet Explorer and ListBox. In my code I have fixed the width of ListBox. In Firefox if an option is longer than the list box, you can see all the content when you click on the ListBox - in IE instead it's truncated. How I can have the same effect of Firefox into IE?

Re: .nocache.js not found

2011-03-02 Thread Bin Wu
does script type=text/javascript language=javascript src=HelloGwt/HelloGwt.nocache.js/script help ? You probably also need module rename-to='HelloGwt' inherits name=com.google.gwt.user.User / source path=client / entry-point class=oge.gwt.chap24.hello.client.HelloGwt / /module

Hosting web application on production server.

2011-03-02 Thread dg
I will develop a web application using GWT, MySQL and Apache Tomcat server. Once I develop my application, I have to show it to my client in a production environment I am not very clear on this part. I understand that I am using Apache Tomcat as an application server. on my own machine. Can I

Editor for Primitive Types

2011-03-02 Thread -sowdri-
Dear All, I've an Editor to display an Entity, which has got an 'int' value. I'm using NumberLabelInteger for the field. But I'm getting the following error, which is of course understandable. [ERROR] [icc] - Found unexpected type int while evauating path age using getter expression

Editor framework and Command pattern

2011-03-02 Thread Tobias
Hello, I'd like to port an older GWT application to GWT 2.2 and make use of the Editor framework and the Requestfactory to reduce some code. The current application uses the command pattern to provide an undo/redo functionality. For databinding, each model class has extensive listener

[WARN] Could not instantiate listener

2011-03-02 Thread murray
I recently updated my app to use GWT 2.2 and AppEngine 1.42 GIN 1.5 and GUICE 2.0. Prior to this I was using 2.1.1 and Gin 1.0 and Guice 2.0 with no issues. After the update the following error appears... [WARN] Could not instantiate listener and I cannot figure out what is wrong. I have

Re: User roles in GWT applications

2011-03-02 Thread Ben Imp
This is basically what I have implemented in my system as well. Our user roles are in the DB and I keep a copy on the client so all of the presenters can inspect it to see what the user can do. I should mention that double-checking the permissions on the server side for all requests is a very

Re: Custom Components Widget.getOffsetWidth

2011-03-02 Thread Jerome Thoma
Cheers, the solution you propose is definitely better and I first implemented it as well. In fact a toolbar with a right and left area was what I was initially aiming for... without much success. The little detail that has escaped my attention (or is not documented?) is that you can integrate

Re: Celltable w/ selectionModel and ActionCells

2011-03-02 Thread John LaBanca
r9788 adds a new BlacklistEventTranslator and WhitelistEventTranslator for use in DefaultSelectionEventManager. Using these, you can disable/enable selection for specific columns. http://code.google.com/p/google-web-toolkit/source/detail?r=9788 DefaultSelectionEventManager manager =

Re: Styeling a ListBox

2011-03-02 Thread Ben Imp
You can probably simulate a red border by surrounding the list box with a div, which you could add a border color to. IE should actually listen to that one. I don't think you can style the drop down arrow at all. From my understanding, form elements are kind of limited in how you can alter

Re: Hosting web application on production server.

2011-03-02 Thread Ben Imp
I'm pretty sure IIS can't handle Java servlets, at least not out of the box (someone please correct me if I am mistaken). I'd want to be testing on the same application server as I was deploying on anyway. -Ben On Mar 1, 11:07 pm, dg damaya...@bitscrape.com wrote: I will develop a web

Re: Hosting web application on production server.

2011-03-02 Thread David Chandler
Hi dg, Are you using GWT-RPC, RequestFactory, or other code from gwt-servlet? If not, the GWT app is just HTML+JS+CSS+images that you can deploy to any Web server. /dmc On Wed, Mar 2, 2011 at 11:45 AM, Ben Imp benlee...@gmail.com wrote: I'm pretty sure IIS can't handle Java servlets, at least

Re: User roles in GWT applications

2011-03-02 Thread zixzigma
could you please explain, why the check on client-side is necessary, if the server does the check ? and on the client-side, do you mean having a UserRoles object, which contains user's permission ? Thank You -- You received this message because you are subscribed to the Google Groups Google

Re: Using HashMap with ValueProxy

2011-03-02 Thread zixzigma
I believe Map is not supported, only Set and List. -- 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: User roles in GWT applications

2011-03-02 Thread zixzigma
if using GWT Activities, do you think it is better to perform the check in Activities themselves or in ActivityMappers (or ActivityFactories) ? -- 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: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-02 Thread Brian Reilly
Hi, so is this the correct approach for it http://tinypic.com/r/236vq0/7 ? When the Activity is created it gets the instance of the view and creates a new presenter. It binds these two together. When the activity is stopped (by place change) the presenter has to be set to null. That seems

Re: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-02 Thread Kayode Odeyemi
Gal, guit seems to be heavily dependent on uibinder. Can you help with a full online/offline reference of uibinder? Regards On 3/2/11, Brian Reilly brian.irei...@gmail.com wrote: Hi, so is this the correct approach for it http://tinypic.com/r/236vq0/7 ? When the Activity is created it gets

Re: Using HashMap with ValueProxy

2011-03-02 Thread shelbot
Thanks for the reply. Is maps not supported in RequestFactory or whole GWT? Because I believe I saw maps in the white list. http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html#Package_java_util On Mar 2, 9:12 am, zixzigma zixzi...@gmail.com wrote: I believe Map is not supported,

Re: Is it possible to override a ListBox()'s functionality

2011-03-02 Thread Rob Tanner
While that sounds good in theory, in practice it makes for a messy screen. When error is detected I open a DialogueBox() centered on the window and depending where on the windows the ListBox() is, it expands right on top the DialogueBox(). While that is technically just an annoyance, it still

I have a problem with GWT 2.1 development mode

2011-03-02 Thread Rob Tanner
Hi, I've lost some functionality that I depend on when I upgraded from 1.7 to 2.1. Basically, I do my development work on a Mac and in development mode, I can view the work in process on both Safari and Firefox. Using VMware, I'm also running Windows 7 on the same physical box. Often times,

WindowBuilder encountered unexpected internal error. Please contact support

2011-03-02 Thread cri
I've got a composite with a CellTable in it. When I try to bring up the composite in GWT Designer, I get the exception referenced below. I suspect the problem is due to the fact that my project uses the gwt 2.1 version of the sdk, while I'm using the latest version (2.2) of the gwt eclipse plugin.

Re: View-Presenter Interaction Patterns in Google Web Toolkit (GWT)

2011-03-02 Thread Gal Dolber
The official UiBinder docs are valid for guit, the ui.xml part is 100% valid but the java part of the docs is not, you can easily translate it. http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html *@UiField - @ViewField* The difference between this two is that a @UiField can be of

Re: Using HashMap with ValueProxy

2011-03-02 Thread Jeff Schwartz
Hash maps are supported. I use one for a local cache. On Wed, Mar 2, 2011 at 12:56 PM, shelbot shubhanshu.na...@gmail.com wrote: Thanks for the reply. Is maps not supported in RequestFactory or whole GWT? Because I believe I saw maps in the white list.

Re: how to secure RequestFactory in GWT 2.2

2011-03-02 Thread Kathiravan Tamilvanan
I am also looking for some recommendation for this. I have read this link http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ and also wanted to implement the security with RequestFactory. But as the article suggests, the session id should be sent on the payload of the

Firefox 4.0b12 and gwt 2.2.0

2011-03-02 Thread Harold Comere
Hi all, I am under windows 7 64 bit, trying to launch any web app with GWT 2.2.0 under minefield ( firefox 4.0b12 ) and firefox crash with this exception : The server is running at http://localhost:/ Exception in thread Code server for test from Mozilla/5.0 (Windows NT 6.1; WOW64;

Re: how to secure RequestFactory in GWT 2.2

2011-03-02 Thread Jeff Schwartz
On Wed, Mar 2, 2011 at 1:48 PM, Kathiravan Tamilvanan kat...@gmail.comwrote: I am also looking for some recommendation for this. I have read this link http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ and also wanted to implement the security with RequestFactory.

Re: User roles in GWT applications

2011-03-02 Thread csaffi
On 2 Mar, 14:31, Lukasz l.plotni...@googlemail.com wrote: I'm doing it by providing a self-implemented UserManager object on the client. It contains the currently signed in user and provides methods for access or role checks e.g. canEditUser(). This UserManager object is an singleton injected

Re: User roles in GWT applications

2011-03-02 Thread csaffi
On 2 Mar, 16:41, Ben Imp benlee...@gmail.com wrote: This is basically what I have implemented in my system as well.  Our user roles are in the DB and I keep a copy on the client so all of the presenters can inspect it to see what the user can do. I should mention that double-checking the

Re: Using HashMap with ValueProxy

2011-03-02 Thread koma
Not supported, my guess : Requests can be parameterized with the following types: - Built-in value types: BigDecimal, BigInteger, Boolean, Byte, Enum, Character, Date, Double, Float, Integer, Long, Short, String, Void - Custom value types: any subclass of ValueProxy - Entity types:

Re: Using HashMap with ValueProxy

2011-03-02 Thread Jeff Schwartz
sorry for posting this. i didn't have the original question - just the one below. never mind lol On Wed, Mar 2, 2011 at 1:44 PM, Jeff Schwartz jefftschwa...@gmail.comwrote: Hash maps are supported. I use one for a local cache. On Wed, Mar 2, 2011 at 12:56 PM, shelbot

encodedRequest cannot be empty

2011-03-02 Thread tjmcc18
I just updated my app from 2.0.4 to 2.1.1. Now I am intermittently seeing the following error: Exception while dispatching incoming RPC call java.lang.IllegalArgumentException: encodedRequest cannot be empty at com.google.gwt.user.server.rpc.RPC.decodedRequest(RPC.java:228) at

Re: how to secure RequestFactory in GWT 2.2

2011-03-02 Thread Kathiravan Tamilvanan
Jeff, Do you have any idea how to do session validation with RequestFactory approach. I am using RequestFactory with a ServiceLocator to locate my spring service layer. I would like to validate the session, when a request is made through the RequestFactory, before invoking the Spring

Re: Setting first column width CSS in CellBrowser via DOM API

2011-03-02 Thread Joe Schmoe
Can you please show a few lines of code how to access the SplitLayoutPanel from within a subclass of CellBrowser. I can't get it to work. Thanks On Feb 3, 7:55 pm, John LaBanca jlaba...@google.com wrote: We haven't had a change to fix this yet.  CellBrowser uses a SplitLayoutPanel that has a

Re: Ganymede Eclipse Older GWT Plugin link needed

2011-03-02 Thread Shameem
Hi All, I am facing the same issues with Eclips 3.4 (Part of RAD7.5). Did any one found the old Ganymede Plugin URL? Can someone please help. Thanks Shameem On Mar 1, 2:13 am, vinayak kulkarni bkvina...@gmail.com wrote: Hi, I also get the same error while installing the GWTpluginto eclipse

Re: Setting first column width CSS in CellBrowser via DOM API

2011-03-02 Thread Joe Schmoe
Can you please show code how to do this? Don't see how I can get access to the SplitLayoutPanel. -- 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

GWT Eclipse 3.4 Plugin version 1.4.0.v201010280047

2011-03-02 Thread Shameem
Hi, I am using IBM RAD7.5 (Based on Eclipse 3.4) and can not install latest GWT Eclipse 3.4 Plugin. I get the following error below. One of my coworker install older version successfully couple of months back, his version is as follow, GWT Eclipse 3.4 Plugin version 1.4.0.v201010280047 Can

GWT multiple html pages

2011-03-02 Thread Dhanu Musham
hi, I am very new to Gwt, in my application i want to maintain two html pages one for login purpose and other one is actual my application. when user comes, initally LOGIN page is appeared, after successful login then shows actual my application. my problem is how can i maintain two html pages in

Re: User roles in GWT applications

2011-03-02 Thread Ben Imp
Depends on the situation, but in general its much easier on users if things they can't do/edit aren't shown to them. Or, alternatively, if they are shown, be shown with some visual indicator of restricted access. A panel full of blank values with no UI feedback is somewhat unintuitive. A panel

Re: Firefox 4.0b12 and gwt 2.2.0

2011-03-02 Thread Chris Conroy
http://code.google.com/p/google-web-toolkit/issues/detail?id=6084 On Wed, Mar 2, 2011 at 1:52 PM, Harold Comere harold.com...@gmail.comwrote: Hi all, I am under windows 7 64 bit, trying to launch any web app with GWT 2.2.0 under minefield ( firefox 4.0b12 ) and firefox crash with this

Re: Async lazy load on scrolling (pagingscrolltable / celltable)

2011-03-02 Thread ciosbel
Just to say that CellTable (and all widgets that implements HasKeyboardPagingPolicy) has a KeyboardPagingPolicy that can be set to INCREASE_RANGE in order to append the next page instead switching to it. Showcase shows this functionality with a CellList, using a ShowMorePagerPanel (that

Re: GWT multiple html pages

2011-03-02 Thread Kayode Odeyemi
There are no pages in GWT. Only widgets. You have a single page, on which all your widgets are attached to. You must have heard about MVP, which is a design pattern to help you manage how you move from one widget to another. Just do some more digging u'll find the answer. On 3/2/11, Dhanu Musham

Re: I have a problem with GWT 2.1 development mode

2011-03-02 Thread Thomas Broyer
Your browsers should display this page, which contains the instructions to solve the issue: http://code.google.com/p/google-web-toolkit/wiki/TroubleshootingOOPHM See also

Re: Failing to install Google Web Toolkit Eclipse plugin

2011-03-02 Thread arnaultbona...@yahoo.com
To anwser myself it was a network error, using a different WiFi hotspot I was able to install the plugin successfully. Thank you for dropping a note. Thanks, Arnault. On 1 mar, 00:09, arnaultbona...@yahoo.com arnaultbona...@yahoo.com wrote: Hello All, I don't know if others have encountered

Re: I have a problem with GWT 2.1 development mode

2011-03-02 Thread Rob Tanner
Thanks! adding -bindAddress argument resolved the problem. On Mar 2, 1:24 pm, Thomas Broyer t.bro...@gmail.com wrote: Your browsers should display this page, which contains the instructions to solve the issue:http://code.google.com/p/google-web-toolkit/wiki/TroubleshootingOOPHM See

howto check HTML5 audio tag supported in a browser

2011-03-02 Thread Armishev, Sergey
I am new to HTML5 and have this simple question: what is the best way to check that HTML5 audio tag is supported on the browser? In general I would like to be able to check for all/most of HTML5 tags. The only library I found is Modernizr from http://diveintohtml5.org/detect but it doesn't check

Re: howto check HTML5 audio tag supported in a browser

2011-03-02 Thread John LaBanca
GWT has an Audio widget for HTML5 audio support: com.google.gwt.media.client.Audio.isSupported() Thanks, John LaBanca jlaba...@google.com On Wed, Mar 2, 2011 at 6:29 PM, Armishev, Sergey sarmis...@idirect.netwrote: I am new to HTML5 and have this simple question: what is the best way to

Re: GWT 2.2 Canvas support for IE6 (GWTCanvasImplIE6)

2011-03-02 Thread Craig Mitchell
+1. Partial support would be great as there are a lot of IE 6/7/8 users out there. http://www.w3schools.com/browsers/browsers_explorer.asp On Mar 3, 1:22 am, Kurtt Lin kurtt@gmail.com wrote: Even partially supporting is welcomed, and developers should have known about its IE6's poor

Re: Is it possible to add widgets as MenuItems?

2011-03-02 Thread Fotos Georgiadis
Nope you cannot add widgets in MenuItems. A MenuItem can either accept a MenuBar (to form hierarchies) or good 'ol plain HTML. That makes it a little bit more difficult to create more interactive menus. I suggest you have look at PopupPanel in combination with your menu bar. -fotos -- You

Overlay types and type erasure

2011-03-02 Thread Christopher
I'm using overlay types and I'm wondering if Java's type erasure is at play. What I have is a class that calls the following native code: private final native T evalJSONPayload(String jsonText) /*-{ return $wnd.JSON.parse(jsonText); }-*/; ...where T extends JavaScriptObject and is

Re: Overlay types and type erasure

2011-03-02 Thread Christopher
Apologies for the post - it looks as though it might be an unrelated issue. Overlay type casting within arrays looks to be just fine. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

anyway to create proxy classes with fields having values from the real entity class automatically?

2011-03-02 Thread JosephLi
Entity proxies created via requestContext.create(...) does not have the correct default value defined in the real entity class, anyone how to easily get around that without manually setting it before passing it to the driver.edit(...)? Thanks, Joseph -- You received this message because you are

Re: Refreshing a celltree

2011-03-02 Thread xwise
Yes I have. A few times... I think the problem is that it's just very different than how I implemented things (my code looks more like what's described in the api: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/cellview/client/CellTree.html). And also the showcase

Can't install google eclipse plugin on fresh Helios install.

2011-03-02 Thread Andrew Hughes
Hi All, I've noticed a lot of posts that people are having trouble updating their eclipse plugins (starting ~14th Feb 2011). I'm not updating, I have a fresh Helios install that won't install the plugin or sdk from http://dl.google.com/eclipse/plugin/3.6. Would anyone be able to confirm this

Re: GWT 2.2 Canvas support for IE6 (GWTCanvasImplIE6)

2011-03-02 Thread Jan Mostert
GWT-graphics supports IE6 via VML and renders everything else via Vector Supported browsers The library has been tested to work with the following browsers: - Internet Explorer 6 and newer - Firefox 3.0 and newer - Safari 3.2 and newer - Opera 9.6 and newer - Google Chrome

ImageResource - ClientBundle Java script exception

2011-03-02 Thread Matej Jelovcan
Hey guys. I am having a bit of a problem with ClientBungle implementation. I am trying to link it to a animated gif. When I do that the page loads fine but on the place where that animated gif should be at there is nothing. And jetty reports this error for IE client:

maintain two html pages in gwt

2011-03-02 Thread Dhanu Musham
hi, can i maintain two html pages in gwt, one for Login.html and after successful login then shows actual my application, else for one html page, how can i manage login validation checking server and how can i redirect actual my application thanks, -- You received this message because you are

Re: anyway to create proxy classes with fields having values from the real entity class automatically?

2011-03-02 Thread JosephLi
I found this thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/aa022f56d9c837db/65c27dbba8927ab9?lnk=gstq=Proxy+default+values#65c27dbba8927ab9 The solution requires a trip back to the server to create the object with initialization then pass it back to the client

Re: ImageResource - ClientBundle Java script exception

2011-03-02 Thread Matej Jelovcan
Ah, fixed it by moving ClientBundle interface into the same pachage/folder as images are. So that now instead of @Source(images/upload2.gif) i use @Source(upload2.gif) and it's fine. On 3/3/11, Matej Jelovcan zuti...@gmail.com wrote: Hey guys. I am having a bit of a problem with ClientBungle

[gwt-contrib] Re: Modifying ClientBundle to create resources lazily, which allows the compiler to dead strip unuse... (issue1368803)

2011-03-02 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/1368803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2011-03-02 Thread pdr
Step-by-step how I was running the tests: 1) Open Eclipse and go to Run-Run Configurations 2) Select GWT JUnit Test on the left and click the new test icon. 3) Put anything for the name, but for the Project put gwt-user and for the Test Class put com.google.gwt.user.client.ui.ImageTest 4) Click

[gwt-contrib] Re: Only validate a constraint annotation once. (issue1373802)

2011-03-02 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/1373802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: More autoformatter tweaks. Allow wrapping on assignments, do not (issue1371802)

2011-03-02 Thread zundel
LGTM: oops, looks like I never sent this comment http://gwt-code-reviews.appspot.com/1371802/diff/1/eclipse/settings/code-style/gwt-format.xml File eclipse/settings/code-style/gwt-format.xml (right):

[gwt-contrib] Re: Adding a BlacklistEventTranslator and WhitelistEventTranslator to DefaultSelectionEventManager t... (issue1368804)

2011-03-02 Thread jlabanca
committed as r9788 http://gwt-code-reviews.appspot.com/1368804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixes a bug in TypeOracle for computing information about single JSO impls. (issue1373803)

2011-03-02 Thread jaimeyap
Reviewers: jgw, Description: Fixes a bug in TypeOracle for computing information about single JSO impls. If you have an interface (lets call it B) that doesn't declare any new methods, but implements some other interface (lets call it A) that may or may not declare methods, then it should be

[gwt-contrib] Re: Fixes a bug in TypeOracle for computing information about single JSO impls. (issue1373803)

2011-03-02 Thread knorton
lgtm http://gwt-code-reviews.appspot.com/1373803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes a bug in TypeOracle for computing information about single JSO impls. (issue1373803)

2011-03-02 Thread jgw
On 2011/03/02 16:30:22, knorton wrote: lgtm me too http://gwt-code-reviews.appspot.com/1373803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: To prevent infinite loops, the Bean Validation implementation must ignore (issue1367802)

2011-03-02 Thread rchandia
LGTM On 2011/03/01 05:40:57, Nick Chalko wrote: http://gwt-code-reviews.appspot.com/1367802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: More autoformatter tweaks. Allow wrapping on assignments, do not (issue1371802)

2011-03-02 Thread Ray Ryan
On Wed, Mar 2, 2011 at 6:41 AM, zun...@google.com wrote: LGTM: oops, looks like I never sent this comment http://gwt-code-reviews.appspot.com/1371802/diff/1/eclipse/settings/code-style/gwt-format.xml File eclipse/settings/code-style/gwt-format.xml (right):

[gwt-contrib] Fix EZT formatting (issue1367803)

2011-03-02 Thread rice
Reviewers: doog, Description: Fix EZT formatting Please review this at http://gwt-code-reviews.appspot.com/1367803/ Affected files: M build-tools/doctool/src/com/google/doctool/custom/EztDoclet.java Index: build-tools/doctool/src/com/google/doctool/custom/EztDoclet.java

[gwt-contrib] [google-web-toolkit] r9790 committed - Fixes a bug in TypeOracle for computing information about single JSO i...

2011-03-02 Thread codesite-noreply
Revision: 9790 Author: jaime...@google.com Date: Wed Mar 2 06:04:24 2011 Log: Fixes a bug in TypeOracle for computing information about single JSO impls. If you have an interface (lets call it B) that doesn't declare any new methods, but implements some other interface (lets call it A)

[gwt-contrib] [google-web-toolkit] r9791 committed - Only validate a constraint annotation once....

2011-03-02 Thread codesite-noreply
Revision: 9791 Author: ncha...@google.com Date: Wed Mar 2 06:09:17 2011 Log: Only validate a constraint annotation once. [JSR 303 TCK Result] 106 of 257 (41.25%) Pass with 24 Failures and 9 Errors. Review at http://gwt-code-reviews.appspot.com/1373802 Review by: rchan...@google.com

[gwt-contrib] [google-web-toolkit] r9792 committed - To prevent infinite loops, the Bean Validation implementation must ign...

2011-03-02 Thread codesite-noreply
Revision: 9792 Author: ncha...@google.com Date: Wed Mar 2 06:32:23 2011 Log: To prevent infinite loops, the Bean Validation implementation must ignore the cascading operation if the associated object instance has already been validated in the current navigation path (starting from the root

[gwt-contrib] Re: Improve AutoBean code generation by reducing the total number of types declared by the generated... (issue1369803)

2011-03-02 Thread rjrjr
And I won't review them. Doing the real review now. On 2011/03/01 22:29:04, bobv wrote: The changes to the old DynaTable sample are just to have a trivially simple app to work with while reducing code size. I won't commit them. http://gwt-code-reviews.appspot.com/1369803/ --

[gwt-contrib] Re: Improve AutoBean code generation by reducing the total number of types declared by the generated... (issue1369803)

2011-03-02 Thread rjrjr
LGTM Just nits. http://gwt-code-reviews.appspot.com/1369803/diff/1/user/src/com/google/gwt/autobean/client/impl/ClientPropertyContext.java File user/src/com/google/gwt/autobean/client/impl/ClientPropertyContext.java (right):

[gwt-contrib] [google-web-toolkit] r9793 committed - Fix EZT formatting...

2011-03-02 Thread codesite-noreply
Revision: 9793 Author: r...@google.com Date: Wed Mar 2 08:46:52 2011 Log: Fix EZT formatting Review at http://gwt-code-reviews.appspot.com/1367803 Review by: d...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9793 Modified:

[gwt-contrib] Re: Modifying ClientBundle to create resources lazily, which allows the compiler to dead strip unuse... (issue1368803)

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

[gwt-contrib] Switching to the junit4 jars, although the @annotation stuff isn't (issue1374801)

2011-03-02 Thread fabbott
Reviewers: jat, Description: Switching to the junit4 jars, although the @annotation stuff isn't going to work. Review by: j...@google.com Please review this at http://gwt-code-reviews.appspot.com/1374801/ Affected files: M build-tools/ant-gwt/build.xml M common.ant.xml M dev/build.xml

[gwt-contrib] [google-web-toolkit] r9794 committed - Adding junit 4.8.2 jars

2011-03-02 Thread codesite-noreply
Revision: 9794 Author: fabb...@google.com Date: Wed Mar 2 13:15:19 2011 Log: Adding junit 4.8.2 jars http://code.google.com/p/google-web-toolkit/source/detail?r=9794 Added: /tools/lib/junit/junit-4.8.2-src.jar /tools/lib/junit/junit-4.8.2.jar === ---

[gwt-contrib] Re: Switching to the junit4 jars, although the @annotation stuff isn't (issue1374801)

2011-03-02 Thread jat
LGTM, assuming the JUnit jar is committed to tools. http://gwt-code-reviews.appspot.com/1374801/diff/1/user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java File user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java (left):

[gwt-contrib] Re: Modifying ClientBundle to create resources lazily, which allows the compiler to dead strip unuse... (issue1368803)

2011-03-02 Thread jat
http://gwt-code-reviews.appspot.com/1368803/diff/1003/user/src/com/google/gwt/resources/rebind/context/AbstractClientBundleGenerator.java File user/src/com/google/gwt/resources/rebind/context/AbstractClientBundleGenerator.java (right):

[gwt-contrib] Re: Switching to the junit4 jars, although the @annotation stuff isn't (issue1374801)

2011-03-02 Thread fabbott
Yep, the tools update just happened at r9794. http://gwt-code-reviews.appspot.com/1374801/diff/1/user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java File user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java (left):

  1   2   >