Re: Multiple GWT Apps inside one HTML Pages

2012-07-05 Thread david.herv...@gmail.com
Thanks Thomas, I've already done some tests and not I've not observed any kind of troubles but my fear is that if I rebuild the apps later they entered into collision without warning and I don't want my application to work by mistake... Deeper inside GWT and for my personal knowledge, can you

Display problem on Samsung Galaxy 3

2012-07-05 Thread bryanb
This simple program doesn't render correctly using the default browser on a Samsung Galaxy 3. It works fine using Chrome, and it works fine on HTC devices and IPhone. It gives the same problem whether using 2.4.0 or 2.5.0.rc1. The problem is with scrolling. The page displays, but if you scroll

Re: Super Dev Mode: Is there a way to start the Super Dev Mode with a server other than the embedded Jetty?

2012-07-05 Thread monkeyboy
Thanks Thomas for the clarification. I now understand that I must have two servers running one for app engine and the other for the code. I managed to make them work, however now I have a problem with GWT-RPC serialization. The code server compiled draft version does not contain the required

Re: What is the minimum Internet speed connexion that the GWT team is considering when testing their GWT application ?

2012-07-05 Thread Jens
I do not see the difference (can you indicate me a piece of code) between *ClientBundle with CssResource *and *ClientBundle + CssResource *? There is no difference, I just was a bit lazy to write with again ;-) *#2* * * You have to create a separate ClientBundle/CssResource that

Debugging gwt maven project server side under eclipse

2012-07-05 Thread zame...@gmail.com
Hi All, When I make a gwt project with gwt-maven-plugin, I cannot debug server side codes. Client side is working well, but it doesn't stop in server side breakpoints. Are there any special to enable server side debugging. I use gwt 2.4.0 and eclipse indigo with gwt plugin

Re: What is the minimum Internet speed connexion that the GWT team is considering when testing their GWT application ?

2012-07-05 Thread regnoult axel
Thanks a lot Jens, this discussion gave me enought information to go futher... Cheers, Axel. -- 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@googlegroups.com. To unsubscribe from this

type MenuBar or MenuItem with addClickHandler(new ClickHandler()

2012-07-05 Thread Assiya EL
hi all, i have a problem with MenuBar or MenuItem , addClickHandler(new ClickHandler() i can't add a event in my MenuItem or MenuBar ??? any idea PLZ -- Assiya EL Master Qualité du Logiciel Plz consider environment - Only print this if necessary -- You received this message because

Re: type MenuBar or MenuItem with addClickHandler(new ClickHandler()

2012-07-05 Thread Jens
You have to use the Command interface. A Command will be executed then a MenuItem is activated. See JavaDoc for MenuBar/MenuItem. -- 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

Re: type MenuBar or MenuItem with addClickHandler(new ClickHandler()

2012-07-05 Thread Ali Thabet
Form MenuItem i set the command witch execute the same code of the ClickHandler. why you want tu add a ClickHandler to the MenuBar? 2012/7/5 Jens jens.nehlme...@gmail.com You have to use the Command interface. A Command will be executed then a MenuItem is activated. See JavaDoc for

AsyncDataProvider for a CellTable that must always have an item selected

2012-07-05 Thread Tiago Rinck Caveden
Hello, I'm writing a custom Composite widget which contains a CellTable. This CellTable must always have an item selected. (I wrote an implementation of DefaultSelectionModel to achieve that). And every time the selection changes, a specific SelectionEventHandler must be invoked to perform some

Re: type MenuBar or MenuItem with addClickHandler(new ClickHandler()

2012-07-05 Thread Ali Thabet
But the command can have fields so you must create your command class witch implements the Command interface and put your parameters in the constructor to set fields -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: type MenuBar or MenuItem with addClickHandler(new ClickHandler()

2012-07-05 Thread Assiya EL
thank you , you have an example of class Command PLZ ? 2012/7/5 Ali Thabet thabet.al...@gmail.com But the command can have fields so you must create your command class witch implements the Command interface and put your parameters in the constructor to set fields -- You received this

Re: type MenuBar or MenuItem with addClickHandler(new ClickHandler()

2012-07-05 Thread Ali Thabet
class MyCommand implements Command { private String _id; public MyCommand(String id) { _id = id; } @Override public void execute() { GreetingServiceAsync greetingService = GWT.create(GreetingService.class);

updating individual cells in from WITHIN the fieldUpdater

2012-07-05 Thread Elhanan
hi... i'm trying to figure out if there's a way to update other cellTable and show that change when one of the cell's fieldUpdater is actviated. the issue is that i have an object with one property, and a celltable with each row of checkboxs display all the possibility of such a property. so

Re: type MenuBar or MenuItem with addClickHandler(new ClickHandler()

2012-07-05 Thread Assiya EL
Okey thank you so much 2012/7/5 Ali Thabet thabet.al...@gmail.com class MyCommand implements Command { private String _id; public MyCommand(String id) { _id = id; } @Override public void execute() { GreetingServiceAsync

Re: gwtc X closure optimizations

2012-07-05 Thread Thomas Broyer
On Thursday, July 5, 2012 5:37:08 AM UTC+2, Magno Machado wrote: I was impressed to see the results achieved on gwt 2.5 by combining the gwt compiler and closure compiler. Well, I always thought there's nothing that closure could do that the gwt compiler couldn't already do, because gwtc

Re: Multiple GWT Apps inside one HTML Pages

2012-07-05 Thread Thomas Broyer
On Thursday, July 5, 2012 9:07:28 AM UTC+2, david@gmail.com wrote: Thanks Thomas, I've already done some tests and not I've not observed any kind of troubles but my fear is that if I rebuild the apps later they entered into collision without warning and I don't want my application to

Re: Super Dev Mode: Is there a way to start the Super Dev Mode with a server other than the embedded Jetty?

2012-07-05 Thread Thomas Broyer
On Thursday, July 5, 2012 10:28:06 AM UTC+2, monkeyboy wrote: Thanks Thomas for the clarification. I now understand that I must have two servers running one for app engine and the other for the code. I managed to make them work, however now I have a problem with GWT-RPC serialization. The

MenuBar: position and z-index

2012-07-05 Thread Ali Thabet
Hello, Is there a way to change how GWT define the position and the z-index of submenus? -- 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@googlegroups.com. To unsubscribe from this

Re: Debugging gwt maven project server side under eclipse

2012-07-05 Thread Thomas Broyer
On Thursday, July 5, 2012 1:38:11 PM UTC+2, zam...@gmail.com wrote: Hi All, When I make a gwt project with gwt-maven-plugin, I cannot debug server side codes. Client side is working well, but it doesn't stop in server side breakpoints. Are there any special to enable server side

Using Super Dev Mode on mobile devices

2012-07-05 Thread Daniel Kurka
Hi Everyone, I just had the time to write a blog post on how to use Super Dev Mode on mobile devices: http://blog.daniel-kurka.de/2012/07/mgwt-super-dev-mode.html Feel free to leave any suggestions as this is still experimental. -Daniel -- You received this message because you are subscribed

Re: Client bundle increase script size by 300kb!

2012-07-05 Thread Joseph Lust
Kroc, This is how ClientBundle is intended to work. I bet that loading 300KB is faster than loading 2000 separate images (~200 packets vs ~4000, assuming 1514B MTU). Consider using code splitting to break out your image resources into separate bundles so that they are loaded as needed by

Re: Display problem on Samsung Galaxy 3

2012-07-05 Thread Joseph Lust
FYI, works on the Galaxy S. Sincerely, Joseph -- 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-toolkit/-/hBD4dHPadH0J. To post to this group, send email to

Re: How i change the locale language of the application

2012-07-05 Thread Rana Issa
Hi, I am also, not finding a way to set the locale in GWT. The only way I found is to use a query parameter that will re-load the page. However, although the url locale is changed,the actual page doesn't change the language. Does anyone know why does this happen? The code for changing the

Know how wide text will be on a Canvas

2012-07-05 Thread Sean
Hey guys, I was wondering if there was a way I can set the font in a canvas: *m_context.setFont(bold 12px sans-serif);* Then take some text, like Hello World! and know how many pixels wide that will be? I have a set space on my canvas, and I want to maximize the size of the text or justify it

Re: Using Super Dev Mode on mobile devices

2012-07-05 Thread Gal Dolber
Just when I needed it! thanks!! On Thu, Jul 5, 2012 at 2:25 PM, Daniel Kurka kurka.dan...@gmail.com wrote: Hi Everyone, I just had the time to write a blog post on how to use Super Dev Mode on mobile devices: http://blog.daniel-kurka.de/2012/07/mgwt-super-dev-mode.html Feel free to leave

Re: Know how wide text will be on a Canvas

2012-07-05 Thread Jim Douglas
http://google-web-toolkit.googlecode.com/svn/javadoc/2.5/com/google/gwt/canvas/dom/client/Context2d.html#setFont(java.lang.String) http://google-web-toolkit.googlecode.com/svn/javadoc/2.5/com/google/gwt/canvas/dom/client/Context2d.html#measureText(java.lang.String)

speed of debug mode in eclipse is very slow or even hang

2012-07-05 Thread tong123123
the problem is very strange, if the project is run outside eclipse, the speed is ok. if run in eclipse but not in debug mode, the speed is also ok. but if run in eclipse and in debug mode (right click project debug as web application (running on an external server),the speed is very slow, and

Re: [gwt-contrib] Re: SuperDevMode CodeServer extensions

2012-07-05 Thread Paul Robinson
On 11/06/12 12:01, Thomas Broyer wrote: How about customizing the CrossSiteIframeLinker instead? Customizing either the computeUrlForResource or loadExternalStylesheets to no longer be relative to the module base url (but rather to, say, the host page base url). Or if you need it to be

[gwt-contrib] Length of obfuscated class names

2012-07-05 Thread Paul Stockley
I am was looking at the size of the generated output for a program we run on the ipad and noticed that the injected css and html strings were taking quite a lot of space. All the obfuscated class names appear to be 10 characters long. Is there a reason they need to be this long? Couldn't they