Re: Is encryption over RCP possible?

2010-12-16 Thread Basdl
In the linked articel there is described that the SSL was striped out. This is not possible if the client requests a https-URL (like https://mybank.example.com). If he calls http://mybank.example.com tha attack is possible even if the bank would redirect to https. The attacker just doesn't have to

Multi url GWT app

2010-12-16 Thread Andrey
Hello! Consider we have a web site with static pages like: /index /products /contacts ... And we want to add dynamic GWT pages like: /request (a request form) /register (register form) /price (price calculator) ... What is the best way to perform this? I don't want to create a separate GWT

Refreshing reference message and eclipse extremely slow

2010-12-16 Thread Jerome C.
Hello, For few days now, my eclipse is slower. When I save a file, dozens messages refreshing reference appear in the progress view and eclipse freezes few minutes before saving. This is really annoying. What I've found is that there is dozens of validating Client Bundles when I open my

Reading annotation values in runtime

2010-12-16 Thread Márcio Menezes
Hi, I have to implement an authorization mechanism where I should be able to define which fields in a view the user has access to: Read / Edit. The idea that I had was to put annotations on top of those fields saying the permission the user must have in order to interact with that field. To get

Re: Refreshing reference message and eclipse extremely slow

2010-12-16 Thread Thomas Broyer
Just to say I'm having the very same issue, and others in the team are also facing it. Our configuration: Eclipse Helios 3.6 GPE 1.4.0 M2Eclipse 0.10 (we haven't migrated to 0.12 because not every m2e-extra has been ported yet and we use some of them: m2e-subclipse for those of use who use

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread Subhrajyoti Moitra
Try setting Width/Height of the TabLayoutPanel widget to 100%. I had a similar problem, and explicitly setting the height and width solved it. Not sure if this would help you. Thanks, Subhro. On Thu, Dec 16, 2010 at 1:12 AM, Aldo Neto tumo...@gmail.com wrote: Hi all, I need to create a

Re: Refreshing reference message and eclipse extremely slow

2010-12-16 Thread Jerome Cance
Ok, i've just uninstall GPE, and all runs perfectly now. I confirm that there is a performance bug in the GPE (maybe with lot of client bundles or uibinder files) I wait a little to see if a gwt team member answer or if another developers have the problem, and if necessary I'll create an issue.

Re: GWT 2.1 MVP Multiple activities clarification help

2010-12-16 Thread Thomas Broyer
I must confess I never actually tested the setWidgetVisible part of the code (in a prototype, I had a DockLayerPanel and used remove/add, without a containing SimplePanel-like widget, for a similar effect). Étienne Pelletier said in the comments that it indeed doesn't work as expected (and

Re: Multi url GWT app

2010-12-16 Thread Subhrajyoti Moitra
Hello, I think GWT is more suited for a single page application, where in the same page gets refreshed with different contents. For the dynamic pages u can use the #!request, #!price, etc.. in the URL to load different contents. Leave the static pages as is, just link these 2(static and GWT app)

i18n default locale fallback

2010-12-16 Thread ep
in 2.1.0 I have the problem that I define my locales like so: extend-property name=locale values=en,de/ set-property-fallback name=locale value=en/ so actually the 'default' locale is excluded and can never happen that would be used. I dont provide any key for the default locale, neither in

Re: Jetty WTP problems (Jetty is publishing to temp dir)

2010-12-16 Thread Thomas Broyer
On Wednesday, December 15, 2010 11:03:53 PM UTC+1, Peter Barker wrote: On Wednesday, December 15, 2010 9:29:43 PM UTC, Peter Barker wrote: It's working OK for all 5 developers of our team (I'm the only one on Windows, all others on Ubuntu 10.04 or 10.10) I'm going through the points

Re: GWT + Google Maps (JSNI) put a map in a panel

2010-12-16 Thread Eric Ayers
FYI: that library is not dead but that bit of source is frozen. We have been slowly refactoring that library for the gwt-google-apis project in a change branch. On Dec 15, 2010 10:18 PM, mp31415 mp...@yahoo.com wrote: Last time I tried that project (gwt-google-maps-v3) it was rather raw

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread Aldo Neto
Thanks for your reply. Do you mean setting them on the TabLayoutPanel XML declaration or via CSS? If CSS, what classes did you use to set them? Thanks, Aldo On Thu, Dec 16, 2010 at 8:04 AM, Subhrajyoti Moitra subhrajyo...@gmail.comwrote: Try setting Width/Height of the TabLayoutPanel widget

Re: i18n default locale fallback

2010-12-16 Thread ep
ok, got a workaound, see issue. On 16 Dez., 11:22, ep eplisc...@googlemail.com wrote: in 2.1.0 I have the problem that I define my locales like so:   extend-property name=locale values=en,de/   set-property-fallback name=locale value=en/ so actually the 'default' locale is excluded and can

Re: i18n default locale fallback

2010-12-16 Thread Nagin Kothari
Also GWT compiles for one more permutaion for default locale, which is unnecessary. Nagin kothari On Thu, Dec 16, 2010 at 3:52 PM, ep eplisc...@googlemail.com wrote: in 2.1.0 I have the problem that I define my locales like so: extend-property name=locale values=en,de/

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread Subhrajyoti Moitra
either should work. I set in the UIBinder xml the height and width attributes for the TabLayoutPanel widget. g:TabLayoutPanel barHeight=30 width=100% height=100%/ U can also use CSS. Define the height/widths in the CSS selector and then do a addStyleNames=mycssstyle in the uibinder XML Also u

Re: Multi url GWT app

2010-12-16 Thread Jerome C.
in my case, I've got several url but only one GWT module. I put a javascript argument in the page (this is your server which put it in the html page). This argument is read by my gwt module and I've got a switch block to instanciate one widget which correspond to my page. With this method, its

GWT-EXT 2.0.5 + GWT 2.1

2010-12-16 Thread Rogério Valente
Does anybody knows why GWT-EXT 2.0.5 doesn't work with GWT 2.1? In my application with GWT 2.0.x, GWT-EXT works fine but, with 2.1 some custom widgets simply don't appear on screen... Should I migrate to SmartGWT ? WIll be a hard work to do... -- You received this message because you are

Re: To GWT or Not to GWT

2010-12-16 Thread yves
Hi, Some times ago I had same kind of questions than bkardell. Actually I would reformulate it another way : I compare the problem to an .exe that is using .dll files If you build a new .exe app you may reuse existing .dlls I understand that this is not possible with GWT as when you compile

execute same code for different widget event handle

2010-12-16 Thread pieceovcake
this works great @UiHandler(streetName) void handleStreetNameKeyPress(KeyPressEvent e) { // code } but i want to execute the same handleStreetNameKeyPress triggered from another field on the page something like this @UiHandler(streetNumber) @UiHandler(streetName) void

Re: Multi url GWT app

2010-12-16 Thread Jim Majure
Each module can have at most 1 entry point. If you don't want to have multiple modules, then you need to get the page URL in the onModlueLoad method and construct the UI appropriately. The Window.Location gives access to the browser's Location object. Keep in mind that you're trading compile time

Re: Multi url GWT app

2010-12-16 Thread Ian Bambury
Just a quick correction: You can have as many entry points as you want. Ian On 16 December 2010 12:52, Jim Majure jim.maj...@gmail.com wrote: Each module can have at most 1 entry point. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: execute same code for different widget event handle

2010-12-16 Thread Jeff Schwartz
Have both handlers call the same routine On Dec 16, 2010 7:45 AM, pieceovcake bira...@gmail.com wrote: this works great @UiHandler(streetName) void handleStreetNameKeyPress(KeyPressEvent e) { // code } but i want to execute the same handleStreetNameKeyPress triggered from another field on the

Re: Multi url GWT app

2010-12-16 Thread Brian Reilly
Check out gwt-multipage (http://code.google.com/p/gwt-multipage/). It works using a single entry point configured in the module XML and can dispatch to other entry points based on a URL pattern or javascript token (pretty much exactly what Jerome posted). -Brian On Thu, Dec 16, 2010 at 8:15 AM,

Re: execute same code for different widget event handle

2010-12-16 Thread Subhrajyoti Moitra
a funny workaround. @UiHandler(streetName) void handleStreetNameKeyPress(KeyPressEvent e) { handleCommonKeyPressEvent(e); } @UiHandler(streetNumber) void handleStreetNameKeyPress(KeyPressEvent e) { handleCommonKeyPressEvent(e); } private void

Re: execute same code for different widget event handle

2010-12-16 Thread Andreas Horst
The value of UIHandlerhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/uibinder/client/UiHandler.html is of type String[]. Just pass your arguments as an array. It's as peace of cake as reading the docs ;-) @UiHandler({streetName, streetNumber}) Regards, Andreas

Re: execute same code for different widget event handle

2010-12-16 Thread Jeff Schwartz
Yup On Dec 16, 2010 8:30 AM, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: a funny workaround. @UiHandler(streetName) void handleStreetNameKeyPress(KeyPressEvent e) { handleCommonKeyPressEvent(e); } @UiHandler(streetNumber) void handleStreetNameKeyPress(KeyPressEvent e) {

Re: GWT + Google Maps (JSNI) put a map in a panel

2010-12-16 Thread soma Gurram
Hi, Following is the code that i have experimented to put a map with panels, please let me if this is ok package com.test.jsni.client.map.control; import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.SimplePanel;

Re: To GWT or Not to GWT

2010-12-16 Thread Christian Goudreau
But would it be possible in the future to allow building GWT-app by reusing previously built GWT-dlls It is already possible. Just build your dll project and export a Jar to be used within your .exe. On Thu, Dec 16, 2010 at 7:34 AM, yves yves.ko...@gmail.com wrote: Hi, Some times ago I

Re: To GWT or Not to GWT

2010-12-16 Thread bkard...@gmail.com
I think you're still not understanding the distinction Christian, since GWT is Java let's try to use an appropriate Java analogy rather than .exe's... The distinction is more like whether a class is on the environment/server classpath (even part of the JRE itself like Swing) vs each app having a

Re: To GWT or Not to GWT

2010-12-16 Thread Myles Bostwick
If you turn off optimization when you compile with that library module, it should be the same for each app which should allow you to share it. Essentially that's what it sounds like you've been asking this whole time. Can I use GWT to follow the same paradigm that is used for prototype and

Re: Reading annotation values in runtime

2010-12-16 Thread Myles Bostwick
There is no runtime reflection in GWT due to client code being compiled to javascript. What you could probably do is something with Generators and deferred binding. Create your view, then have a generator create a subclass that implements your security for all those annotated fields. Generators

Problem with response.getHeaders()

2010-12-16 Thread Andrei Gheorghe
Hi there I am trying to make a REST call through HTTPS and read the response headers. Even though the response text (response.getText()) has absolutely no problem, getHeaders() throws a NullPointerException: java.lang.NullPointerException: null at

couldn't add push button to the DOM

2010-12-16 Thread gandham satish
Hi, I am trying to create a simple header with caption and close button at the right end. I have created simple table with single row having two columns. I have added label in the first column and close button image in the next column. It is working fine when I added the image but not working

GWT Designer for NetBeans

2010-12-16 Thread Kidowell
Hey, is there any gwt designer for NetBeans out there?. It would be nice to place all the design and receive automatically the code for it. I have read theres a plugin for Eclipse but I can't find anything for NetBeans. Any sugestion?. Cheers. Kido. -- You received this message because you

GWT Generator inside an OSGI plugin

2010-12-16 Thread cbdave
I have a Generator class that is called in hosted mode on GWT.create(...). The Generator class has to run in an OSGI plugin since the information it generates into Java code comes from registered plugin extensions. Is there a way to launch the plugin (or launch the whole DevMode.main() as a

Re: RequestFactory, ServiceLocator and Spring

2010-12-16 Thread Zigu
Your solution looks great. But I'd like to add that it only works with version GWT 2.1.1 or higher. With this version they introduced the service layer API for Requestfactory. Additionally, I'd like to ask is whether it is useful to make the ServiceLocator ApplicationContextAware? For example:

CrossSiteIframeLinker (xsiframe) ready for prime time?

2010-12-16 Thread Mikko
Hi, I'm interested in CrossSiteIframeLinker included in GWT2.1. However, it seems that automatic resource inclusion doesn't work with it as it does with other linkers (iframe, xs). When other linkers add stylesheets and scripts to HTML host page, xsiframe doesn't add anything. Am I missing

Cannot run GWT starter application

2010-12-16 Thread Chris
Hello All, I am trying to set Google Web Toolkit up on my system and have been following the guide at http://code.google.com/webtoolkit/doc/latest/tutorial/create.html to get some experience with the system. I have had some problems though. When I run the program in development mode the page

Does anyone know how to install these libraries?

2010-12-16 Thread roman_e
Hi I'm new to gwt and I'd like to create a Webpage with HTML5. Now I've found these libraries for 3 HTML5 functions: http://code.google.com/p/gwt-mobile-webkit/ But I don't know how I install them. Does anyone know how to install these libraries? Or is there a better way to develop a HTML5 page?

Get Started with the GWT SDK problems

2010-12-16 Thread Pythagoras
I executed the Get Started with the GWT SDK. Runs fine in Development mode. However, when running in production mode, I have 2 problems: 1/ Only on Chrome: The page does not load and I get following error: Unsafe JavaScript attempt to access frame with URL

GWT CellTable - render cell depending on value of the displayed object

2010-12-16 Thread Opal
Hi, I use CellTable to display the data in my web app and would like to add an empty row at the end to enable users to add new data. In all rows (including last one) I use EditTextCell to update data, but I would like to display TextInputCell in the last row only. Does anybody know how it can be

Re: CrossSiteIframeLinker (xsiframe) ready for prime time?

2010-12-16 Thread Chris Conroy
It's not listed on purpose since it's not quite ready yet. There is a big delta between the state of the linkers in trunk and in 2.1. It's really only in 2.1 partially and you should not use it in 2.1. On Thu, Dec 16, 2010 at 8:33 AM, Mikko mikko.koljo...@gmail.com wrote: Hi, I'm interested

Re: Get Started with the GWT SDK problems

2010-12-16 Thread Chris Conroy
Chrome is a bit picky (and rightly so) when it comes to accessing file:/// URIs. You need to deploy to a web server--even if only to serve to localhost. On Thu, Dec 16, 2010 at 6:21 AM, Pythagoras peter.n...@gmail.com wrote: I executed the Get Started with the GWT SDK. Runs fine in

Re: To GWT or Not to GWT

2010-12-16 Thread bkard...@gmail.com
Myles, Help me to understand what you are saying, because I am getting the sense that there is still a disconnect... If anyone feels that they can help facilitate this conversation, please jump in... Let's take the simplest possible case that I was describing above where what I'm trying to

Re: To GWT or Not to GWT

2010-12-16 Thread Myles Bostwick
Your simple case is not quite what I'm referring to. Take instead your simple case, but you have to recompile everything. However, when you deploy, because you didn't optimize, and because you've separated your reusable code into separate libraries, you will have identically named files that

Re: Does anyone know how to install these libraries?

2010-12-16 Thread Myles Bostwick
You might find this wiki page from your link useful. http://code.google.com/p/gwt-mobile-webkit/wiki/DataServiceUserGuide . As to whether there is a better way to develop an HTML5 page, it'd if you specified what exactly from the HTML5 spec you're looking to use. Be aware that not all

Re: Does anyone know how to install these libraries?

2010-12-16 Thread roman_e
Thank you for your answer. At the moment, I'm only going to use the storage and offline application functions. I've created a testapp in normal HTML5 and tested them on different mobile webbrowsers. The most of them support the functionalities enough to use it for special features. On Dec 16,

Re: How to reliably detect a paste operation via mouse in TextBox?

2010-12-16 Thread Nick Newman
Would listening for the changeEvent be a more direct approach? Nick On Wed, Dec 15, 2010 at 11:15 PM, Sunit Katkar sunitkat...@gmail.comwrote: Any ideas?? - Sunit Katkar http://sunitkatkar.blogspot.com/ On Tue, Dec 14, 2010 at 2:25 PM, Sunit Katkar sunitkat...@gmail.comwrote: I have

Re: To GWT or Not to GWT

2010-12-16 Thread bkard...@gmail.com
Myles, thanks for not giving up and your continued efforts to want to see that we come to a common understanding :) I still think that we are talking past one another though... When you compile your one file, it has JRE/WT stuff in it. Above that - I can see how codesplitting and your Md5

Re: To GWT or Not to GWT

2010-12-16 Thread Myles Bostwick
Sure in that regard you'll have some duplication, not any way around that that I can see. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this

Re: RequestFactory, ServiceLocator and Spring

2010-12-16 Thread d95sld95
ApplicationContextAware only works if the SpringServiceLocator object was managed by Spring. In this case the RequestFactoryServlet is responsible for creating the SpringServiceLocator and the setApplicationContext method won't be called. -- You received this message because you are subscribed

Re: To GWT or Not to GWT

2010-12-16 Thread bkard...@gmail.com
Thanks again Myles, that's what I expected, but wanted to keep pursuing just in case. For the record though, I just want to point out that the case here is that we will have _most_ duplication, not some, and that is why it is problematic. In our tests, as much as 99% of the code generated for

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread Aldo Neto
Hi Subhro, Thanks once again. You are right...I have to set the height/width to get the content to be displayed. However, for some reason, I'm not being able to do that. My UIBinder is the following: g:TabLayoutPanel ui:field='rightTabPanel' barUnit='PX' barHeight='200' g:tab

Re: To GWT or Not to GWT

2010-12-16 Thread Ian Bambury
Hi bkardell, I think the simple answer is that in extreme cases such as the one you cite, GWT is not a good fit. The easiest response is to ask you to give it a bit of time and wait until you understand what GWT is before you ask these questions :-) But quickly: * GWT came into being in order

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread John LaBanca
You have to reference the style like this: addStyleNames='{style.mycssstyle}' Thanks, John LaBanca jlaba...@google.com On Thu, Dec 16, 2010 at 12:32 PM, Aldo Neto tumo...@gmail.com wrote: Hi Subhro, Thanks once again. You are right...I have to set the height/width to get the content to

Editor framework and interfaces

2010-12-16 Thread skrat
Hi All, I really see big potential in new and shiny editor framework. Works pretty well so far, but I noticed, that it doesn't work when I use interfaces for my views. Typical example: you describe your view as an interface: interface FooView extends EditorFoo { ... } then instance of this

Re: Refreshing reference message and eclipse extremely slow

2010-12-16 Thread David Chandler
Hi Jerome, We're looking into it. I've been seeing the same thing for several days now, but thought it might have been due to running tip-of-trunk plugins. /dmc On Thu, Dec 16, 2010 at 5:07 AM, Jerome Cance jerome.ca...@gmail.com wrote: Ok, i've just uninstall GPE, and all runs perfectly now.

need UIBinder example using multiple composite

2010-12-16 Thread Robert Guest
Can anyone point me to a simple example of a GWT app that uses UIBinder and 2 or 3 composites? I really would like to see a working example of how to reference one composite from another, both in the XML and the Java code. Thanks, Robert -- You received this message because you are subscribed

Unable to evaluate payload

2010-12-16 Thread Germain
Hi everyone, I developed an application using GWT 2.1 using RPC with eclipse. In development mode its working fine and my RPC invocations are working. I configured a tomcat 6 server and deployed my application by creating a .war file by zipping the content of the war directory. The deployment

Re: To GWT or Not to GWT

2010-12-16 Thread bkard...@gmail.com
Hi Ian, My example is not a nebulous hyper-pathelogical theoretical case meant to stymie the group and prove something about GWT. It is the real world environment/problem that I have in front of me - almost exactly as I have described (although, actually more pathological than I have indicated

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread Aldo Neto
Thanks for your help, but for some reason my UIBinder is not binding the panel to the style part. I'm really running out of ideas, so in case any of you see where I'm wrong, it'll help me a lot. Otherwise I'll have to change my design to not have tabs nested with the forms. My ui.xml file:

Re: To GWT or Not to GWT

2010-12-16 Thread Ian Bambury
I don't think I said you were stymying the group. Sorry if my reply gave that impression. I don't know how much you know about GWT. I don't even know how much of GWT I don't know. That's the trouble with the unknown. Presumably you don't understand this particular little bit or you wouldn't be

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread Jeff Larsen
I think you need to add @external gwt-TabLayoutPanelTab; to your style otherwise it is going to obfuscate gwt-TabLayoutPanelTab. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT 2.1.1 Release Candidate now available

2010-12-16 Thread monkeyboy
AFAIK there are another two breaking changes described here: http://code.google.com/p/google-gin/issues/detail?id=131 and here: http://code.google.com/p/gwt-google-apis/issues/detail?id=438 I found out about those in version svn 9401. If the changes did not make it to rc1 disregard this post.

Re: Problem with response.getHeaders()

2010-12-16 Thread marius.andreiana
Hi Andrei :) Since nobody answered, I hope the following pointers helps you in debugging. A similar thread with a reply from Thomas is here https://groups.google.com/group/google-web-toolkit/browse_thread/thread/4f4132bc90f6375a In GWT source, have a look at *

Re: Problem with response.getHeaders()

2010-12-16 Thread marius.andreiana
What does getReadyState() return? (don't know how exactly would this be called from a Request class). Looks like it works only if(this.readyState == 2) And here http://www.devx.com/webdev/Article/33024/1954 it says readyState should be 3 or 4 for response headers to be returned. -- You

Re: couldn't add push button to the DOM

2010-12-16 Thread Amir Kashani
There's a few subtle and important steps that GWT takes when attaching a widget to the DOM. Generally, you shouldn't try to do this manually. Rather, take a look at HTMLPanel -- it supports mixing Widgets with HTML markup. If the markup is complicated, it's probably worth using UiBinder. -

Re: Problems with ImageBundle in IE8 when not in compatibility mode

2010-12-16 Thread Salman Hemani
This does not work for me. I am using Win7. Also, Alex your syntax is incorrect. There is no / before and the correct tag should be: meta http-equiv=X-UA-Compatible content=IE=EmulateIE7 Anyhow, this is not working for me. Any other suggestions? -- You received this message because you

Re: need UIBinder example using multiple composite

2010-12-16 Thread Subhrajyoti Moitra
Heres a simple example, from one of the projects i am doing.. NavTreeView.ui.xml g:HTMLPanel styleName=grid_4 * ubq:NavTreeViewToolBar ui:field=navTreeToolBar/ubq:NavTreeViewToolBar* g:ScrollPanel addStyleNames={style.scrollit} ui:field=navTreeScrollPanel

Re: Insert TabLayoutPanel in a SimplePanel

2010-12-16 Thread Subhrajyoti Moitra
As John has already pointed out g:tab addStyleNames='mycssstyle' width='100px' height='100px' Line will become g:tab addStyleNames='{style.mycssstyle}' width='100px' height='100px' On Thu, Dec 16, 2010 at 11:02 PM, Aldo Neto tumo...@gmail.com wrote: Hi Subhro, Thanks once again. You

GWT must Allow sending a variable of type object via RPC

2010-12-16 Thread Noor
Using GWT RPC, we cannot send a variable of the type OBJECT. I am trying to do this Service Interface: Boolean SaveObjectIntoDatabase(Object Entity); ServiceAsync: void SaveObjectIntoDatabase(Object Entity,AsyncCallback Boolean Callback); This is because if we are using hibernate on the

Re: Manipulate localized date on the server side

2010-12-16 Thread Sydney
So I ended up grabbing the client timezone: private String getClientTimezone() { Date now = new Date(); String timezone = DateTimeFormat.getFormat().format(now); return timezone; } and pass it to my action and on the server side Calendar cal =

Re: GWT must Allow sending a variable of type object via RPC

2010-12-16 Thread Didier Durand
Hi, Does the object you want to send implement Serializable ? It's required Then in your case when not just define class MyObject extends Object implements Serializable { ... } Then, you will be able to carry MyObject and its child classes over RPC. regards didier On Dec 17, 5:22 am, Noor

Re: need UIBinder example using multiple composite

2010-12-16 Thread karthik reddy
this might help http://davidmaddison.blogspot.com/2010/03/building-gwt-declarative-interface.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 google-web-tool...@googlegroups.com. To unsubscribe

Re: GWT must Allow sending a variable of type object via RPC

2010-12-16 Thread David Chandler
Hi Noor, In order to support polymorphism, GWT-RPC generates a serializer and deserializer for the entire type hierarchy (all sub-classes) of any types used as arguments or return types in a service method. The use of Object is explicitly disallowed in RPC in order to prevent the explosion of

Exposing RequestContext methods to non-GWT clients.... (newbie question)...

2010-12-16 Thread Richard Berger
In building very simple learning application using GWT-RPC and then RequestFactory, I was wondering whether it was possible to expose the methods that are in my RequestContext interface (in the RequestFactory- based app). In particular, I have: public interface CommitmentRequest extends

Re: Editor framework and interfaces

2010-12-16 Thread Y2i
I also noticed that editors do not work with interfaces even though the documentation says they should http://code.google.com/webtoolkit/doc/latest/DevGuideUiEditors.html#Editor_contract On Dec 16, 10:09 am, skrat dusan.malia...@gmail.com wrote: Hi All, I really see big potential in new and

Re: GWT must Allow sending a variable of type object via RPC

2010-12-16 Thread Noor
Ok, I will try it. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For

[gwt-contrib] Re: Comment on DefaultLocaleBinding in google-web-toolkit

2010-12-16 Thread codesite-noreply
Comment by eplischke: ... or if you have multi-locales than you can do this way: extend-property name=locale values=en,de/ set-property-fallback name=locale value=en/ set-property name=locale value=en,de/ For more information:

[gwt-contrib] Some of the unit tests in CreateEventTest have listeners (issue1223801)

2010-12-16 Thread zundel
Reviewers: jlabanca, Description: Some of the unit tests in CreateEventTest have listeners that fire multiple times. This occasionally causes a failure in an unrelated test. Assuming that the extra firings are spurious, I've added an explicit 'cancel()' method to bypass the assertions if they

[gwt-contrib] Re: Some of the unit tests in CreateEventTest have listeners (issue1223801)

2010-12-16 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1223801/diff/1/2 File user/test/com/google/gwt/user/client/ui/CreateEventTest.java (right): http://gwt-code-reviews.appspot.com/1223801/diff/1/2#newcode738 user/test/com/google/gwt/user/client/ui/CreateEventTest.java:738: listener.assertReceived();

[gwt-contrib] Add a warning in GWTTestCase to help users that accidentally run a GWT JUnit Test as a JUnit Test. (issue1224801)

2010-12-16 Thread pdr
Reviewers: jlabanca, rdayal, Description: Add a warning in GWTTestCase to help users that accidentally run a GWT JUnit Test as a JUnit Test. This mistake is easy to make (especially in Eclipse.) Therefore, we display a helpful error suggesting the user run as a GWTJUnitTest if an exception is

[gwt-contrib] Re: Some of the unit tests in CreateEventTest have listeners (issue1223801)

2010-12-16 Thread zundel
http://gwt-code-reviews.appspot.com/1223801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Some of the unit tests in CreateEventTest have listeners (issue1223801)

2010-12-16 Thread zundel
http://gwt-code-reviews.appspot.com/1223801/diff/1/2 File user/test/com/google/gwt/user/client/ui/CreateEventTest.java (right): http://gwt-code-reviews.appspot.com/1223801/diff/1/2#newcode738 user/test/com/google/gwt/user/client/ui/CreateEventTest.java:738: listener.assertReceived(); On

[gwt-contrib] Re: Some of the unit tests in CreateEventTest have listeners (issue1223801)

2010-12-16 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1223801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add a warning in GWTTestCase to help users that accidentally run a GWT JUnit Test as a JUnit Test. (issue1224801)

2010-12-16 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1224801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixing a bug in CellTable and CellList where we get an index out of bounds exception if we try t... (issue1225801)

2010-12-16 Thread jlabanca
Reviewers: pdr, Description: Fixing a bug in CellTable and CellList where we get an index out of bounds exception if we try to access the keyboard selected element when keyboard selection is disabled. Please review this at http://gwt-code-reviews.appspot.com/1225801/show Affected files: M

[gwt-contrib] Re: Fixing a bug in CellTable and CellList where we get an index out of bounds exception if we try t... (issue1225801)

2010-12-16 Thread pdr
On 2010/12/16 16:51:04, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/1225801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Initial version of HTML5 Audio and Video (issue1195801)

2010-12-16 Thread Ray Ryan
On Wed, Dec 15, 2010 at 5:40 PM, jlaba...@google.com wrote: LGTM Don't forget test cases. By which I'm sure John meant before you submit this. You guys are doing an awesome job with the HTML5 stuff! I can't wait to see this stuff in action.

[gwt-contrib] [google-web-toolkit] r9450 committed - warning bootstrap is broken

2010-12-16 Thread codesite-noreply
Revision: 9450 Author: ncha...@google.com Date: Thu Dec 16 09:46:38 2010 Log: warning bootstrap is broken http://code.google.com/p/google-web-toolkit/source/detail?r=9450 Modified: /wiki/BeanValidation.wiki === --- /wiki/BeanValidation.wiki Wed Dec 15

[gwt-contrib] [google-web-toolkit] r9451 committed - escape wikilink

2010-12-16 Thread codesite-noreply
Revision: 9451 Author: ncha...@google.com Date: Thu Dec 16 09:47:49 2010 Log: escape wikilink http://code.google.com/p/google-web-toolkit/source/detail?r=9451 Modified: /wiki/BeanValidation.wiki === --- /wiki/BeanValidation.wiki Thu Dec 16 09:46:38 2010

[gwt-contrib] [google-web-toolkit] r9453 committed - Fixing a bug in CellTable and CellList where we get an index out of bo...

2010-12-16 Thread codesite-noreply
Revision: 9453 Author: jlaba...@google.com Date: Thu Dec 16 06:19:53 2010 Log: Fixing a bug in CellTable and CellList where we get an index out of bounds exception if we try to access the keyboard selected element when keyboard selection is disabled. Review at

[gwt-contrib] Re: Fixing a bug in CellTable and CellList where we get an index out of bounds exception if we try t... (issue1225801)

2010-12-16 Thread jlabanca
committed as r9453 http://gwt-code-reviews.appspot.com/1225801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9454 committed - Cherry picking r9453 into release branch.

2010-12-16 Thread codesite-noreply
Revision: 9454 Author: jlaba...@google.com Date: Thu Dec 16 07:24:08 2010 Log: Cherry picking r9453 into release branch. http://code.google.com/p/google-web-toolkit/source/detail?r=9454 Modified: /releases/2.1/user/src/com/google/gwt/user/cellview/client/CellList.java

[gwt-contrib] Re: Add a warning in GWTTestCase to help users that accidentally run a GWT JUnit Test as a JUnit Test. (issue1224801)

2010-12-16 Thread rdayal
Thanks for looking into this. A couple of questions/comments before I give the LGTM.. http://gwt-code-reviews.appspot.com/1224801/diff/1/2 File user/src/com/google/gwt/junit/client/GWTTestCase.java (right): http://gwt-code-reviews.appspot.com/1224801/diff/1/2#newcode445

[gwt-contrib] [google-web-toolkit] r9455 committed - Merge pt_PT fix for AD era name into 2.1 release branch.

2010-12-16 Thread codesite-noreply
Revision: 9455 Author: j...@google.com Date: Thu Dec 16 09:38:49 2010 Log: Merge pt_PT fix for AD era name into 2.1 release branch. http://code.google.com/p/google-web-toolkit/source/detail?r=9455 Modified:

[gwt-contrib] [google-web-toolkit] r9456 committed - Change era names in pt_PT to match pt (a Portuguese specialist replied...

2010-12-16 Thread codesite-noreply
Revision: 9456 Author: j...@google.com Date: Thu Dec 16 09:22:20 2010 Log: Change era names in pt_PT to match pt (a Portuguese specialist replied it should also be changed). Patch by: jat Review by: pdr http://code.google.com/p/google-web-toolkit/source/detail?r=9456 Modified:

[gwt-contrib] [google-web-toolkit] r9457 committed - Removing the 2.1.1 tag.

2010-12-16 Thread codesite-noreply
Revision: 9457 Author: p...@google.com Date: Thu Dec 16 12:56:48 2010 Log: Removing the 2.1.1 tag. http://code.google.com/p/google-web-toolkit/source/detail?r=9457 Deleted: /tags/2.1.1 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9458 committed - Adding the 2.1.1 tag.

2010-12-16 Thread codesite-noreply
Revision: 9458 Author: p...@google.com Date: Thu Dec 16 12:57:29 2010 Log: Adding the 2.1.1 tag. http://code.google.com/p/google-web-toolkit/source/detail?r=9458 Added: /tags/2.1.1 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >