Re: Did anybody try Cross site communication?

2010-07-24 Thread V M
Finally, i was able to get it working. Here is the code: *code* Class to class cast JSO public class GeoNames extends JavaScriptObject { protected GeoNames() { } public final native String getPlaceName() /*-{ return this.placeName; }-*/; public final native String getText()

css uibinder problem

2010-07-24 Thread asianCoolz
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#18181818, endColorstr=#); i get error: 16:26:55.820 [WARN] [cmsui] Line 12 column 9: encountered :. Was expecting one of: } + - , ; / STRING IDENT NUMBER URL PERCENTAGE PT MM CM PC IN PX EMS EXS DEG RAD GRAD MS SECOND HZ

google font api integration

2010-07-24 Thread asianCoolz
what is the best practise that you folks use to integrate uibinder with google font api? -- 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: google font api integration

2010-07-24 Thread asianCoolz
i cant use ui:style src=http://fonts.googleapis.com/css? family=Lobster/ in eclipse, as it prompt for error -- 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

Re: Diagramming Library

2010-07-24 Thread Peter Simun
Dependes how much functionality do you need. Some diagram implementations exists also for GWT, for example gwt-diagrams project: http://code.google.com/p/gwt-diagrams/ But this projects seems not to be an active anymore, but hopefully a new project continues with the implemenation:

Re: Session IDs, user credentials, and distributed deployment

2010-07-24 Thread Peter Simun
Hi Dane, you are right, this has been solved before :) For example you can transfer your sessionId in your RPC payload and then correctly pair request with session on the server side. This approach was implemented in acris framework and described in the security chapter here:

Re: Serializable objects lost during Async call

2010-07-24 Thread Yau
Yes, it could possibly be some of the fields being transient. I'm using Hibernate with Gilead and all subclasses are working perfectly fine through RPC. Somehow gilead as well as rpc are kinda blackboxes and I can't debug into them and figure out what happened. In the end, I have to use

Re: DialogBox seems to interfere with scrolling a ScrollPanel when mouse is over a widget...

2010-07-24 Thread Asfand Yar Qazi
Thanks. My dialog box is, as you can see from the code, already set modal. On Jul 23, 3:37 pm, dane.molotok dane.molo...@gmail.com wrote: My understanding is that the scroll wheel is like anything else, and only applies to what has focus. So even though your dialog box is open, it somehow

unit testing GWT serialization

2010-07-24 Thread Eric
Hi All, Has anyone written simple unit tests to test: 1) if a class will go in to the serialization policy file at compile time? and 2) if GWT RPC successfully serializable/deserializable an object at runtime? This has ended up being a fragile part of our application as we fix/ enhance so it

Re: unit testing GWT serialization

2010-07-24 Thread Uberto Barbini
Have you tried with gwt unittest? I don't recall exactly, but we wrote some of them but then we decided to remove them from our TDD flux because they were tooking too much time to run. Now we use unittest server side (also for gwt object that doesn't require js compilation) and selenium test for

Re: google font api integration

2010-07-24 Thread Brian Reilly
Right. ui:style src looks for local CSS files relative to the .ui.xml file. I think you have 2 options: 1. Load the font on the host page. 2. Add a stylesheet to your GWT module that includes this line: @import url(http://fonts.googleapis.com/css?family=Lobster); As described in the

Class implements IsSerializable does not show up in all RPCRequest.serializationPolicy

2010-07-24 Thread citress
Hi, GWT version: 2.0.0 My understanding of the serialization policy is that if a Class implements IsSerializable, it will be part of GWT's serialization policy whitelist. I created a custom, runtime exception that implements IsSerializable. This runtime exception shows up in the serialization

web-kit gradient not working

2010-07-24 Thread asianCoolz
background-image: -moz-linear-gradient(100% 100% 180deg, #2F2727, #1a82f7) !important; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1a82f7), to(#2F2727)) ; the first one work on uibinder, but the second one not showing up in safari. anyone can comment on this? i'm using

Re: Another Ajax Crawling question, is #! acceptable rather then just #! ?

2010-07-24 Thread Stefan Bachert
Hi, when others are as confused as me than you will get no qualified answer You are talking about PHP, url, google and sometimes it sounds that you are talking about Google Webmaster Tools. ( != GWT = Google Webtool Kit) Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support

Re: Another Ajax Crawling question, is #! acceptable rather then just #! ?

2010-07-24 Thread darkflame
Thanks, Sorry if its not clear, but I am actually talking about all of those things. PHP is my back end which is generating the static pages. GWT is what my site is coded in. Its completely dynamic and makes extensive use of # tokens to store and retrieve its states. I'm attempting to get my

Re: Diagramming Library

2010-07-24 Thread Patrick
Hi, There is a new commercial library available at http://www.tomsawyer.com that is built using GWT 2.x called Perspectives. Tom Sawyer Software has been in business since 1991. The GWT specific product was just released over a week ago. It ships with both pure JS created via GWT compiler as well

Re: Abridged summary of google-web-toolkit@googlegroups.com - 32 Messages in 19 Topics

2010-07-24 Thread Valentyn Shybanov
2010/7/24, google-web-toolkit+nore...@googlegroups.com google-web-toolkit+nore...@googlegroups.com: = Today's Topic Summary = Group:

GWT 1.4 Serialization Policy and the use of IsSerializable

2010-07-24 Thread citress
Prior to 1.4, the legacy serialization policy allows anything marked IsSerializable to be serialized by GWT. Version 1.4 onwards, the use of Serializable is permitted along with the generation a serialization policy file. My question is, with the new serialization policy, can I still use

Re: web-kit gradient not working

2010-07-24 Thread Gal Dolber
Find the thread: Gradients in css3 from a few days ago 2010/7/24 asianCoolz second.co...@gmail.com background-image: -moz-linear-gradient(100% 100% 180deg, #2F2727, #1a82f7) !important; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1a82f7), to(#2F2727)) ; the first

Re: web-kit gradient not working

2010-07-24 Thread lineman78
someone just asked this question 2 days ago, there is a bug report in, you have to wrap it with a literal for now in uibinder or cssresource. http://code.google.com/p/google-web-toolkit/issues/detail?id=4877 On Jul 24, 9:34 am, asianCoolz second.co...@gmail.com wrote:  background-image:

uibinder @import url..

2010-07-24 Thread asianCoolz
hi, does this line @import url(http://fonts.googleapis.com/css?family=Lobster); inside test.css ui:style src=test.css / suppported in uibinder? when i run on browser and look at the obfuscated css file, it didnt have the line @import url(http://fonts.googleapis.com/css? family=Lobster); ? is

Re: uibinder @import url..

2010-07-24 Thread lineman78
From the CssResource documentation: The @import statement will only work for other CssResources, not for URLs at runtime, since the .gwt.xml or StyleInjector can be used in those cases. http://code.google.com/p/google-web-toolkit/wiki/CssResource#Compile-time_import If you wish to use external

Re: [gwt-contrib] Re: Using ValueStore without RequestFactory

2010-07-24 Thread Jarrod Carlson
I think it goes a bit deeper then that. EditorSupport depends on DeltaValueStore, which depends on Record. While Record is merely an interface, its provided implementation, RecordImpl, depends on RecordJsoImpl, all three of which imply that my Record (however it is implemented) has both id and

Re: [gwt-contrib] Re: Using ValueStore without RequestFactory

2010-07-24 Thread Jarrod Carlson
Maybe I should rephrase my question. I have a REST service in place that serves JSON... you know, GET, PUT, POST... the lot. So I am not currently using any GWT RPC or RequestFactoryServlet mechanisms, nor do I have JPA-annotated beans in my project. The only thing I do have is a suite of