GWT 2.7 and GSS

2014-11-24 Thread Patrice De Saint Steban
Hello, Is there a documentation of the new GSS feature ? Is-there changes since this documentation : https://github.com/jDramaix/gss.gwt/wiki/GssResource-user-guide Thanks, Patrice -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To un

Re: Problems with user agent property in GWT 2.6

2014-03-20 Thread Patrice De Saint Steban
You can find these informations in : http://www.gwtproject.org/doc/latest/DevGuideIE9.html Le jeudi 20 mars 2014 11:01:04 UTC+1, Patrice De Saint Steban a écrit : > > You can use the html5 doctype : > > > And I also add this meta tags : > > > Le mercredi 19 mars 201

Re: Problems with user agent property in GWT 2.6

2014-03-20 Thread Patrice De Saint Steban
You can use the html5 doctype : And I also add this meta tags : Le mercredi 19 mars 2014 20:38:51 UTC+1, manu a écrit : > > Do you know which doesn't cause any formatting issues in IE9? > > > On Wed, Mar 19, 2014 at 7:43 PM, manya mohanan > > > wrote: > >> Thanks for your reply. >> >> The ht

Re: GWT 2.6.0 now available

2014-01-31 Thread Patrice De Saint Steban
The 2.6.0-rc3 version exist in the maven central. You can use it, and define the dependencies in the plugin configuration for use the 2.6.0 version. Le vendredi 31 janvier 2014 12:48:36 UTC+1, Bruno Santos a écrit : > > Missing only release the new version for eclipse plugin > -- You received t

How a custom Editor can know that a new edit begin (before the setValue)

2014-01-07 Thread Patrice De Saint Steban
If we have an Editor with LeafValue subeditor. We can implement the interface ValueAwareEditor. with this interface with can implement a flush and a setValue. But the setValue is called after the driver set all values in sub editor. How can we execute code before the driver set values in sub edito

Re: SuperDevMode with 2.6.0-rc3 and logLevel

2013-12-10 Thread Patrice De Saint Steban
Hello, I submit a patch for add the argument logLevel in the Super Dev Mode. https://gwt-review.googlesource.com/5680 Patrice de Saint Steban On Tue, Dec 10, 2013 at 12:12 PM, Jens wrote: > But the question, is there a way to set the logLevel in Super Dev Mode ? >> > >

Re: SuperDevMode with 2.6.0-rc3 and logLevel

2013-12-10 Thread Patrice De Saint Steban
libs (gwt-dnd). But the question, is there a way to set the logLevel in Super Dev Mode ? Thanks. Patrice de Saint Steban On Sat, Dec 7, 2013 at 2:24 PM, Jens wrote: > [ERROR] Errors in 'jar:file:/C:/Users/sfeir/.m2/ > repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.

SuperDevMode with 2.6.0-rc3 and logLevel

2013-12-07 Thread Patrice De Saint Steban
Hello, I test the new GWT version 2.6.0-rc3, the dev mode and the compile works with my application, but the super dev mode not work (it work with the 2.5.1 version). I have this problème : > workDir: > C:\Users\sfeir\AppData\Local\Temp\gwt-codeserver-2871590299772449765.tmp > binding: user.ag

Developers.google.com

2012-04-23 Thread Patrice De Saint Steban
Hello, There a new developers website for all APIs for Google : http://developers.google.com, and the documentation website of GWT has migrated on the new website : http://developers.google.com/web-toolkit/ But there are no links for GWT on the first page of the news developers page, you must

Re: Permission denied to access property 'document' in firefox

2012-02-15 Thread Patrice De Saint Steban
Do you use JSNI ? In your JSNI, do you use the $doc name instead of document ? http://code.google.com/intl/fr/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on

Re: CellTree - which nodes are open or closed on it?

2012-02-14 Thread Patrice De Saint Steban
It's not a good solution, but when you open a tree node with setChildOpen(), the method return the Child TreeNode : public TreeNode setChildOpen(int index, boolean open, boolean fireEvents) { assertNotDestroyed(); checkChildBounds(index); CellTreeNodeView child = nodeView.getChil

Re: GWT and Google Maps Version 3

2012-02-14 Thread Patrice De Saint Steban
Hello, There are a new in progress wrapper of the Gwt Maps v3 http://code.google.com/p/gwt-maps-api/ with demo : http://c.gwt-examples.com/api/google-maps-v3 I not tested this implementation, I use the gwt-google-maps-v3 project with jsni for error or missing fonction. Patrice -- You rece

How to get gwt compile error in a gwt generator

2012-01-31 Thread Patrice De Saint Steban
Hello, I'm created a generator for automatically build the activityMapper. The generator scan alls Activities defined in the project and build the activityMapper. I use the JClassType.getSubtypes() for get all subtypes of Activity in the application. My problems is when a developper do a GWT er

mergelocales.py and new GWT versions

2011-05-03 Thread Patrice De Saint Steban
Hello, With the GWT 2.0, I use the excellent mergelocales.py from the gwt plateform project http://gwt-platform.googlecode.com/files/mergelocales.py I try to now use it with the GWT 2.2, but the new version didn't generate properties files, it's generate Java classes with annotations, and the p

Re: How do I test task queue ?

2011-04-20 Thread Patrice De Saint Steban
Hello, At the end of the task, write the result in a datastore, and the GWT application will periodically fetch the datastore to know if the task is completed. Or you can use the chanel API, the task at the end send a message to the channel to say that the task is finished. http://code.google.c

Re: RichTextArea, SafeHtml, and general rich text best practices

2011-04-05 Thread Patrice De Saint Steban
Hello, I'm doing the same thing, and I write a new Sanitize class to accept more tags and parameters. I use this sanitizer before and after the setHtml() and getHtml() of the RichTextArea. I share the file in attachment, If there are some issues thanks to inform me. Patrice -- You received t

Re: DockLayoutPanel with global Scroll

2011-03-22 Thread Patrice De Saint Steban
Hello you can't use the DockLayoutPanel for do this, but you can use the LayoutPanel to add Layer, and attach Layer on the Top, left and Right to the screen and allow the size to be growing to the content. Patrice -- You received this message because you are subscribed to the Google Groups "

How to remove the check of the findxxx() static method in domain entity

2011-02-03 Thread Patrice De Saint Steban
Hello, We use the request factory with spring and classic services, and for find a new entity, we use a method in the service and not in the domain entity. We create a ServiceLayerDecorator to override the loadDomainObject to load the object without use the static method findxxx() in the entity.

Re: BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-27 Thread Patrice De Saint Steban
post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. >

Re: @UiChild with text

2011-01-23 Thread Patrice De Saint Steban
Hello You can just do this by extend your class with HasText Interface and implement the getText() and setText() method. Patrice -- 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@goo

BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-20 Thread Patrice De Saint Steban
Hello, I want to have the best practice to know how to use the Editor Framework with MVP. Where place all the code. For exemple if I want to do a build an Activity with edit an object, I will create first an Activity EditObjectActivity and a EditObjectView interface with the EditObjectViewImpl

Re: Property Provider for specific Users Agent

2010-12-15 Thread Patrice De Saint Steban
Thanks Thomas, It's was the solution ! -- 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...