Re: Client Bundle CSS3 parsing

2012-05-11 Thread Joseph Lust
Generally speaking, you should not be using vendor specific prefixes. The W3C has recently been on the war pathon this very issue. As such, I would not expe

Re: No Textbox can take the focus by mouse clicking in IE8

2012-05-11 Thread Samyem Tuladhar
Any solution to this since it was posted more than a year ago? I am running into the exact same issue. On Wednesday, February 2, 2011 9:03:39 AM UTC-5, AlexF wrote: > > I posted all details with an example here: > http://code.google.com/p/google-web-toolkit/issues/detail?id=5968 -- You receive

Re: Findbugs problem by GWT Project.

2012-05-11 Thread Carlos Alexandro Becker
I am with this problem here too... On Monday, October 31, 2011 12:37:42 PM UTC-2, Kotuboy wrote: > > I have a maven GWT project and i am using findbugs to analyze the code. > > > org.codehaus.mojo > findbugs-maven-plugin > 2.3.2 >

CellTable header w/ a linear gradient background via CSS gradient - is it supported?

2012-05-11 Thread licht...@gmail.com
Attempting a linear gradient background in a CellTable header as such... .cellTableHeader { background: #EEE; background: -moz-linear-gradient(center top, #FEFEFE, #F1F1F1 50%, #E1E1E1 50%, #F4F4F4) repeat scroll 0 0 transparent; } FF only ever shows the #EEE background. I don't want to

Re: Editor Framework: Client side validation and error handling

2012-05-11 Thread André Salvati
I'm also looking for a solution for 1). Is it possible to get validation from my domain classes on my proxy classes? How should I do with Editors? Thanks. Em segunda-feira, 17 de outubro de 2011 10h10min52s UTC-2, Jens escreveu: > > Hi, > > currently exploring the editor framework and client sid

Re: Suggestion for RequestFactory find(EntityProxyId id) > concurrently/async query propertyRefs

2012-05-11 Thread Brandon Donnelson
Would anybody be willing to describe what would need to be contributed, b/c I trying to figure it out and looking to contribute back a patch. I know your super busy with other issues :) On Thursday, May 10, 2012 4:07:01 PM UTC-7, Brandon Donnelson wrote: > > I'm not sure this is possible but, i

Re: How can I find JSNI code in Firebug or Chrome?

2012-05-11 Thread Chris Price
I tend to use the debugger keyword in thejsni method and then hit the page with the developer tools open. https://developer.mozilla.org/en/JavaScript/Reference/Statements/debugger On Fri, May 11, 2012 at 12:02 PM, monkeyboy wrote: > If You use Chrome You can try the following (works for me anyw

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Thomas Broyer
On Friday, May 11, 2012 4:12:16 PM UTC+2, Ümit Seren wrote: > > Thanks for the feedback Thomas, > I was actually following the gwt_with_maven docs at the google developers > page (tough only creating one maven war project). > So I think it should be quite easy to split it up. > Yes, very easy

Re: Client Bundle CSS3 parsing

2012-05-11 Thread Chris Price
Lots of people :) https://groups.google.com/forum/?fromgroups#!searchin/google-web-toolkit/css3$20gradient On Fri, May 11, 2012 at 9:20 AM, mtrebizan wrote: > I have found out that Client Bundle can't parse -moz-, -webkit-, -o- and > other gradients in CSS3. At least in my CSS I don't see it. As

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

2012-05-11 Thread Mohamadreza Rezaee
Launch my web net application tool kit google groupower -- On Fri 11 May, 2012 6:48 AM PDT google-web-toolkit@googlegroups.com wrote: >= >Today's Topic Summary >

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Ümit Seren
Thanks for the feedback Thomas, I was actually following the gwt_with_maven docs at the google developers page (tough only creating one maven war project). So I think it should be quite easy to split it up. BTW. do these 3 (or 4 respectively) modules go into separate VCS repositories or do all

Re: Google axing GWT?

2012-05-11 Thread Dimitrijević Ivan
According to: http://pgt.de/2011/12/08/gwt-2-5/ *1) Compiler optimizations that reduce code by size by 30% uncompressed, and 15% gzipped** 2) SourceMap support and Source-Level Java debugging in Chrome (and hopefully Firefox) 3) A „super draft mode“ that can recompile many apps in under 10 secon

Re: JSR303 localized messages with RequestFactory

2012-05-11 Thread André Salvati
I've just translated messages to portuguese into a new ValidationMessages.properties file and put it into classpath. Hibernate Validator autodetects this new configuration. Thanks. Em sexta-feira, 11 de maio de 2012 05h24min33s UTC-3, Jens escreveu: > > No I don't know the exact references anym

Re: How can I find JSNI code in Firebug or Chrome?

2012-05-11 Thread monkeyboy
If You use Chrome You can try the following (works for me anyway): First you start debugging in Development mode and put a breakpoint at the JSNI method. When the breakpoint is hit then switch to the Chrome browser and open the developers tools (Shift+Ctrl+I) then go to the scripts tab and clic

Re: How can I find JSNI code in Firebug or Chrome?

2012-05-11 Thread Thomas Broyer
If you have an exception in JSNI code, you can ask Chrome to "stop on all exceptions", and you'll see your JSNI code and will be able to step within it. You can also try to "pause script execution". On Friday, May 11, 2012 11:41:05 AM UTC+2, walker1c wrote: > > Hi, > > I am trying to debug a JS

laxman lingampally wants to chat

2012-05-11 Thread laxman lingampally
--- laxman lingampally wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-f821af8aac-cdafb0eca7-b9YvQdQ8KftlB7hMChJCPI-W2eo Yo

IDML and Layout ?

2012-05-11 Thread gwtnewbie
Hello, I think create a web interface for creating invitations ( http://www.bebe-cards.com style), from models created with the Adobe InDesign software (based on the exchange format IDML -InDesign Markup Language-). The principle is to allow the user to choose a model already made ​​on InDesi

Re: GWT: CheckBoxCell and Selection change event

2012-05-11 Thread Qrunk
Hi Thomas, Thanks for the reply. Actually we were trying the same thing what you had mentioned, but a piece of code missing at model level which was causing the problem. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this disc

How can I find JSNI code in Firebug or Chrome?

2012-05-11 Thread walker1c
Hi, I am trying to debug a JSNI method while running in Development Mode. Can anyone tell me how to locate the JSNI code in a Javascript debugger? I have tried using the script search feature in both Firebug and Chrome to look for words that are part of the JSNI code, but neither seems to be abl

SmartGWT GUI issue

2012-05-11 Thread sbt
In my project , i have the requirement of creating a form having tabs on it and this form has a ComboBox. TextBox and a Button on it, Unable to make it using SmartGWT drag and drop GUI facility in Eclipse. I have made a entry point class that is extended from Canvas.I am putting above mentioned w

Is GWT Validation is available for RequestFactory proxy

2012-05-11 Thread saurabh saurabh
Hi all, I am working on a project with GWT using RequestFactory and EditorsFramework along with spring hibernate on server side. I saw GWT validation feature that ties up nicely with editors but every example I have seen so far have domain 'Entities' on shared path. While I am having all my domain

Re: JSR303 localized messages with RequestFactory

2012-05-11 Thread Jens
No I don't know the exact references anymore. But I am pretty sure it should work this way. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolk

Client Bundle CSS3 parsing

2012-05-11 Thread mtrebizan
I have found out that Client Bundle can't parse -moz-, -webkit-, -o- and other gradients in CSS3. At least in my CSS I don't see it. As anyone else experienced this problems? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this d

Re: Why is AbstractCellTable.createHeaders() private?

2012-05-11 Thread Ümit Seren
The GWT team did this be design. AFAIK interfaces and classes which are not really finalized are (package-) private so that nobody can rely or build on top of them. Otherwise if the GWT team decides to change something it will break their code. I guess that's the reason why createHeaders() is pri

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Thomas Broyer
On Friday, May 11, 2012 9:09:17 AM UTC+2, Ümit Seren wrote: > > I have a question to the people who are using multi-module maven projects > instead of one (I am currently developing a Spring/GWT/RequestFactory > project as one big maven projects). > I do much of the debugging in eclipse by st

Re: GWT: CheckBoxCell and Selection change event

2012-05-11 Thread Thomas Broyer
It's not clear to me what the checkbox "checkness" represents: is the checkbox used to select rows? or to set some boolean value of the row? If the former, then have a look at http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable // Checkbox column. This table will uses a checkbo

Re: example, stand-alone gwt openid project

2012-05-11 Thread Ümit Seren
You have two ways to solve this: 1. Authenticate outside of GWT with dedicated servlet/jsp: In case you are using Spring or another Java application framework you can have a normal login.jsp page which deals with your openid authentication and after your are properly authenticated

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-11 Thread Ümit Seren
I have a question to the people who are using multi-module maven projects instead of one (I am currently developing a Spring/GWT/RequestFactory project as one big maven projects). I do much of the debugging in eclipse by starting a WTP jetty instance and then starting the GWT development mode.