Re: Could not load GWT DMP Plugin

2012-10-24 Thread Juanra Collado
It's working for me the new version in: Chrome - Versión 22.0.1229.94 m Windows XP SP3 Thanks for your work. El miércoles, 24 de octubre de 2012 02:52:41 UTC+2, Markus Grill escribió: the new version works... Thank you Markus Am Mittwoch, 24. Oktober 2012 01:53:48 UTC+2 schrieb Brian

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Chris Feuz
After updating the GWT Dev Plugin to version 1.0.11349 it seems to work again on my system (Win 7/64, Chrome 22, GWT Dev Plugin 1.0.11349, Juno, m2e ) Thanks for fixing it On Wednesday, October 24, 2012 8:46:22 AM UTC+2, Juanra Collado wrote: It's working for me the new version in: Chrome -

Re: Rounded Borders or Curved Borders

2012-10-24 Thread Thomas Broyer
On Wednesday, October 24, 2012 7:44:25 AM UTC+2, vairavan Murugappan wrote: Is there any panel or any easy way of having a rounded border in gwt? Best is to simply use CSS's border-radius http://caniuse.com/border-radius. If you can't (absolutely need rounded corners in IE6-8), then use a

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Benoit Bolduc
Version 1.0.11349 works here also. Thanks for the fix. Really appreciated! On Wednesday, October 24, 2012 3:21:02 AM UTC-4, Chris Feuz wrote: After updating the GWT Dev Plugin to version 1.0.11349 it seems to work again on my system (Win 7/64, Chrome 22, GWT Dev Plugin 1.0.11349, Juno,

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Drew Spencer
Thank you Brian! All working now. On Wednesday, 24 October 2012 00:53:48 UTC+1, Brian Slesinsky wrote: A new version is now live in the Chrome store. The only difference is that the Windows version is statically linked. I don't have a sufficient number of Windows machines available for

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Leos Prikryl
Thanks a lot. The new version works for me as well. On Wednesday, October 24, 2012 1:53:48 AM UTC+2, Brian Slesinsky wrote: A new version is now live in the Chrome store. The only difference is that the Windows version is statically linked. I don't have a sufficient number of Windows

Re: Rounded borders in panel

2012-10-24 Thread Ashton Thomas
UiBinder: (Also shows background gradients) !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:style .wrap { padding: 10px; } .roundedWidget { text-align: center; margin:

Custom Cell in Table

2012-10-24 Thread furious_panda
Hi all, I'm new in GWT and I want to create* a table with custom cell.* I want to do a custom cell similar to the gwt examples : http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList The difference is each row, I have for example 5 columns, and each cell must be a custom cell who

Re: Moving Animation

2012-10-24 Thread Tony Rah
Here are some tips for such a thing in GWTLand. These are off the top of my head so there might be some missing pieces. 1. Use the GWT Animation class. Read its java doc. It will tell you everything you need to know about how it works. 2. Override the onStart method and hold onto the widget to

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Geoff Gibbs
I have the same versions of Chrome and Windows, but it's still not working for me. I have tried uninstalling/reinstalling but still no joy... On Wednesday, October 24, 2012 7:46:22 AM UTC+1, Juanra Collado wrote: It's working for me the new version in: Chrome - Versión 22.0.1229.94 m

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Catherine Nantel
It seems to have make things better but it still crashes. Could it be caused by the automatic update of the plugin that overwrite your version? Le mercredi 24 octobre 2012 10:15:34 UTC-4, Geoff Gibbs a écrit : I have the same versions of Chrome and Windows, but it's still not working for

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Juanra Collado
That's true. It's loading the plugin well but is crashing in a few clicks. Hope a solution, it's so difficult programming this way. El miércoles, 24 de octubre de 2012 16:22:46 UTC+2, Catherine Nantel escribió: It seems to have make things better but it still crashes. Could it be caused by

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Nomikos Zografakis
Hi Brian, It crashes a little later than before, but still crashed nonetheless. If there's any way I can can send you logs from the plugin, please let me know and I will send them as per your instructions. Thanks. - Nomikos On Tuesday, October 23, 2012 7:53:48 PM UTC-4, Brian Slesinsky wrote:

Re: CellList Style

2012-10-24 Thread sana ben aissa
hi , how does it work in case i added the same widget twice in a view ? i wanna add the same widget twice in a view with diffrent style ! like this , i will always get the second style i puted in the component ! thx for ur time :=) -- You received this message because you are subscribed to

Re: GWTTESTCASE and SSL

2012-10-24 Thread Ed
You need to configure your server to handler ssl. Running in local mode will not work in ssl. Ed On Tue, Oct 23, 2012 at 2:19 PM, jana jlp...@hotmail.com wrote: On Wednesday, September 5, 2012 6:25:46 PM UTC-4, jana wrote: I'm using GWTTestCase but need the ability to configure it to use

Security considerations for GWT applications

2012-10-24 Thread Flying-w
I am investigating security considerations around the user login for a GWT application in respect of the following strategy: - User enters their id and password in a dialogue; - Client transmits the login request with the above details to the server using RPC; - Server returns a

Re: CellList Style

2012-10-24 Thread Thomas Broyer
On Wednesday, October 24, 2012 5:36:44 PM UTC+2, sana ben aissa wrote: hi , how does it work in case i added the same widget twice in a view ? i wanna add the same widget twice in a view with diffrent style ! like this , i will always get the second style i puted in the component !

Re: Error for installing Google App engine in the Eclipse indigo

2012-10-24 Thread Ed
Check your Anti Virus to make sure it is not blocking. Ed On Sun, Oct 21, 2012 at 10:00 AM, Francis Nderitu nderitufranci...@gmail.com wrote: same problem An error occurred while collecting items to be installed session context was:(profile=epp.package.java,

Re: Moving Animation

2012-10-24 Thread Manuel Carrasco Moñino
Use the animate method from gwtquery to move the widget to the panel position (just a line of code) , dont forget to add a callback function in order to add the widget to the panel after the animation has been finished and maintain the gwt widget hierarchy. BTW: gquery uses gwt-animate as its

Re: Security considerations for GWT applications

2012-10-24 Thread Ed
Use SSL for Security, never send a clear text user id password over the wire. If a user navigates away from app then they should log in again. ed On Wed, Oct 24, 2012 at 5:41 AM, Flying-w simonjone...@googlemail.com wrote: I am investigating security considerations around the user login for a

Re: Security considerations for GWT applications

2012-10-24 Thread Manuel Carrasco Moñino
- Use Http-Only cookies so as any eventually injected js does not have access to the session cookie. - You could compute and send the MD5 hash of the password instead of the clear one if the server is storing the password in MD5 On Wed, Oct 24, 2012 at 8:26 PM, Ed ej19...@gmail.com wrote: Use

Re: [QUESTION] Developing for mobile

2012-10-24 Thread Manuel Carrasco Moñino
#1 its true, you develop in gwt and pack the compiled stuff with cordova aka phonegap, and it would work in almost modern mobile platforms. #2 you need gwt-phonegap if you wanted to access some hardware functions in your mobile, I recomend mgwt as well. On Tue, Oct 23, 2012 at 10:24 PM, Oliver

Re: IndexedDb

2012-10-24 Thread Manuel Carrasco Moñino
Have you try this http://code.google.com/p/indexeddb-gwt/wiki/HowTo ? On Mon, Oct 22, 2012 at 10:56 PM, Twentyseven ebarthel...@gmail.com wrote: Hello, I did some test with local and session storage with GWT but it's very limited in size. I'd like to use IndexedDb but there's no native API

StockWatcher tutorial IE8

2012-10-24 Thread Сергей Захаров
I read the Retrieving JSON Data tutorial ( https://developers.google.com/web-toolkit/doc/latest/tutorial/JSON ) However, the FlexTable widget isn't updated each 5 seconds (only after delete or add new stock) in IE8. In Chrome everything works perfectly. Can you explain why or give me the link

Announcing GwtChosen 1.1.0!!

2012-10-24 Thread Julien Dramaix
Dear Community, I've just released GwtChosen 1.1.0. This release fix some bugs and bring two new enhancements : - possibility to customize the CSS via the ChosenOption object - add optgroup support to the ChosenListBox widget. Don't forget to change your pom. xml or download the last jar file

Re: Could not load GWT DMP Plugin

2012-10-24 Thread Brian Slesinsky
I have access to crash reports. Still figuring out how to use the data. In my testing, I can start the Showcase sample in dev mode and it seems to work, but if I leave the browser open for a while, the plugin will eventually crash. - Brian On Wednesday, October 24, 2012 7:54:49 AM UTC-7,

Re: Exception JPA (EclipseLink) + GWT

2012-10-24 Thread Milton Lima
No. server-side code. I solved the problem of exception. tanks (: Em terça-feira, 23 de outubro de 2012 19h48min29s UTC-2, Juan Pablo Gardella escreveu: Did you try use this method in client side sources? 2012/10/23 Milton Lima flmi...@gmail.com javascript: Hi I am developing a

Re: Exception JPA (EclipseLink) + GWT

2012-10-24 Thread Milton Lima
No server-side code I solved the problem of exception thanks (: Em terça-feira, 23 de outubro de 2012 19h48min29s UTC-2, Juan Pablo Gardella escreveu: Did you try use this method in client side sources? 2012/10/23 Milton Lima flmi...@gmail.com javascript: Hi I am developing a project

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread mdempsky
http://gwt-code-reviews.appspot.com/1859803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread jat
LGTM http://gwt-code-reviews.appspot.com/1859803/diff/2001/user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java File user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java (right):

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread mdempsky
http://gwt-code-reviews.appspot.com/1859803/diff/2001/user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java File user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java (right):

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread mdempsky
http://gwt-code-reviews.appspot.com/1859803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread skybrian
http://gwt-code-reviews.appspot.com/1859803/diff/2001/user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java File user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java (right):

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread t . broyer
http://gwt-code-reviews.appspot.com/1859803/diff/2001/user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java File user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java (right):

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread mdempsky
http://gwt-code-reviews.appspot.com/1859803/diff/2001/user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java File user/src/com/google/web/bindery/requestfactory/apt/ValidationTool.java (right):

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread mdempsky
Alternatively, take a look at Patch Set #1, which simply added an extra parameter to exec() to pass in a custom JavaCompiler instance. Would that patch (updated to make the exec() methods public) be preferable? http://gwt-code-reviews.appspot.com/1859803/ --

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread skybrian
On 2012/10/24 21:24:02, mdempsky wrote: Alternatively, take a look at Patch Set #1, which simply added an extra parameter to exec() to pass in a custom JavaCompiler instance. Would that patch (updated to make the exec() methods public) be preferable? Yeah, seems simpler.

[gwt-contrib] Re: Split ValidationTool.exec() into two methods so alternative (issue1859803)

2012-10-24 Thread mdempsky
http://gwt-code-reviews.appspot.com/1859803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors