Re: Where to store global (application) variables?

2012-02-13 Thread phil
Take a look here :
http://code.google.com/p/gwt-client-storage/

or use com.google.gwt.storage.client.Storage

Regards.

Phi

-- 
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 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.



Framework app mobile

2012-02-13 Thread Adolfo Panizo Touzon
Hi all,

I have developed a GWT app. Now, we are planning to create the same app to
mobile devices (Android, Android Tablet, Iphone, Ipad, Blackberry...).

After a fast google search, I have seen that the are some frameworks that
allow write once, run everywhere like mgwthttp://code.google.com/p/mgwt/
, PhoneGap http://phonegap.com/,
gwt4timobilehttp://www.emitrom.com/gwt4timobile
.

The questions is that I don't what is the best, and if there are others.

Also I don't know if there is a good decision work with these frameworks
instead of develop in each platform the app.

Any idea, or user experience are welcome.

I don't know if there is useful but the app that we are planning to
transform is easy, it does not need the latest versions of each OS.

Regards and thanks in advance,

Adolfo.

-- 
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet

-- 
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 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: Framework app mobile

2012-02-13 Thread Alain Ekambi
Hi Adolfo,

Like always it depends.
Should your mobile app be web based or native ?

If you are are looking for a webbased solution i d recommend :

Web :
1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created it,
but also because it leverages Sencha Touch, which to me
is the best mobile HTML5 framework on the market. We also added PhoneGap
support if you want to add some native capabilities.

2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same author).
But i think Gwt4Touch looks a bit better :)

Native :
On the other end Gwt4Ti Mobile will help you build native mobile apps by
leveraging the Titanium runtime.
So if you want to go native while leveraging GWT(specially all your back
end code) Gwt4Ti mobile should help.



If you have any question feel free to ping us on the forum

www.emitrom.com/forum

Cheers,

Alain

2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi all,

 I have developed a GWT app. Now, we are planning to create the same app to
 mobile devices (Android, Android Tablet, Iphone, Ipad, Blackberry...).

 After a fast google search, I have seen that the are some frameworks that
 allow write once, run everywhere like mgwthttp://code.google.com/p/mgwt/
 , PhoneGap http://phonegap.com/, 
 gwt4timobilehttp://www.emitrom.com/gwt4timobile
 .

 The questions is that I don't what is the best, and if there are others.

 Also I don't know if there is a good decision work with these frameworks
 instead of develop in each platform the app.

 Any idea, or user experience are welcome.

 I don't know if there is useful but the app that we are planning to
 transform is easy, it does not need the latest versions of each OS.

 Regards and thanks in advance,

 Adolfo.

 --
 El precio es lo que pagas. El valor es lo que recibes.
 Warren Buffet

 --
 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 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.


-- 
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 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: how to configure apache log4j for gwt application

2012-02-13 Thread tong123123
thanks, finally I found the following link is useful
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/a26afdfd0035f2c7/87789151dc14e380?hl=enlnk=gstq=log4j#87789151dc14e380

On Feb 10, 5:27 pm, karthik vadapalli karthik29...@gmail.com wrote:
 hi tong look at this may be it was useful for 
 youhttp://whatwouldnickdo.com/wordpress/186/gwt-hosted-mode-and-log4j/









 On Fri, Feb 10, 2012 at 2:51 PM, tong123123 tong123...@gmail.com wrote:
  I placed the log4j-1.2.16.jar under WEB-INF\llib\

  in server code, I write the following

  class DBConnection{
  private static Logger logger = Logger.getLogger(DBConnection.class);

  public static Connection getConnection(){

   PropertyConfigurator.configure(server_resources/log4j.properties);

  then the console show error:
  java.io.FileNotFoundException: server_resources\log4j.properties (the
  system cannot find the path specified)

  how to make it found the log4j.properties?

  I try to copy the server_resources/log4j.properties under web-inf and
  placed inside war, it is ok and no error, but I want it placed under
  WEB-inf, no method if placed under web-inf?

  --
  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 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.

 --
 Regards,
 v.karthik,
 +919967930663.

-- 
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 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: Mulitple pages using GWT

2012-02-13 Thread tong123123
yes, I think the user is facing the change page concept in old jsp1 --
 servlet -- jsp2 concept.
I also face similar problem when using gwt in the first time, it seems
that gwt has no page concept, but should think page as panel, so
change page is equal to change panel!!
let said there is one outer panel and it contains different
panel(page), depends on what page(Panel) need to be displayed.


On Feb 13, 3:18 pm, Vasi Sándor sa...@inlineskate.hu wrote:
 In the gwt world we usually don't navigate the user to new page, but instead 
 replace the content of our container widget. E.g. You have two panels: one 
 for the navigation buttons and an other for the page content. You can replace 
 the content easily in the page content containing panel by clicking on any of 
 the buttons in the other panel.
 I am not too sure, but is this what you need?

 On 2012.02.13., at 7:36, yashujn yashssha...@gmail.com wrote:







  I devloped a webpage which xactly looks like igoogle page in my page 4
  wdigets are presents and all are take latest updates using rss
  feed...

  in left hand side of my page i gave 4 button for those 4 widgets by
  clicking on those button widget will open in full screen mode(xactly
  like igoogle).

  now i created one more button named SHARED what i want is when
  anyone click on that button a predefined template will

  open (i write the code for that template).. so anyone can share
  anything .

  now the thing is in my home page i wat only those 4 widgets and this
  template will shown only when anyone click on that SHARE button.

  i dnt knw how to do it I thought to add one more page is
  an option so i asked how to add multiple pages in gwt..

  hope i cleared my dout.

  plz help me uregntly...

  On Feb 13, 11:26 am, Amrutha Thomas amrutha.tho...@gmail.com wrote:
  Can you make the question  clear??

  --
  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 group, send email to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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 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.



gwt application connect to weblogic, how to setup using OEPE

2012-02-13 Thread tong123123
I already setup the weblogic server in Oracle Enterprise Pack for
Eclipse (OEPE), but when I want to add the gwt application to the
server, it prompt There  are no resources that can be added or
removed from the server,
any method to add gwt project to weblogic server in eclipse (OEPE)?
my gwt version is 2.4 and weblogic server is 10.3.4.
eclipse version is 3.6.1

-- 
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 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: Framework app mobile

2012-02-13 Thread Adolfo Panizo Touzon
Hi Alain,

Thank you for the info.

We are interested in Native solutions.

Basically, if I'm correct the best frameworks in order to have one app for
each platform (from the same initial GWT app) are *Gwt4Ti* *Mobile *and *
phoneGAP*.

Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.

Does someone works with these frameworks? Are there others?

Thank you in advance,

Adolfo.

PD. I post this mail here because I'm interested (if is it possible) in
create the initial app in GWT and then transform to native platforms.

2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Hi Adolfo,

 Like always it depends.
 Should your mobile app be web based or native ?

 If you are are looking for a webbased solution i d recommend :

 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created it,
 but also because it leverages Sencha Touch, which to me
 is the best mobile HTML5 framework on the market. We also added PhoneGap
 support if you want to add some native capabilities.

 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same author).
 But i think Gwt4Touch looks a bit better :)

 Native :
 On the other end Gwt4Ti Mobile will help you build native mobile apps by
 leveraging the Titanium runtime.
 So if you want to go native while leveraging GWT(specially all your back
 end code) Gwt4Ti mobile should help.



 If you have any question feel free to ping us on the forum

 www.emitrom.com/forum

 Cheers,

 Alain

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi all,

 I have developed a GWT app. Now, we are planning to create the same app
 to mobile devices (Android, Android Tablet, Iphone, Ipad, Blackberry...).

 After a fast google search, I have seen that the are some frameworks that
 allow write once, run everywhere like mgwthttp://code.google.com/p/mgwt/
 , PhoneGap http://phonegap.com/, 
 gwt4timobilehttp://www.emitrom.com/gwt4timobile
 .

 The questions is that I don't what is the best, and if there are others.

 Also I don't know if there is a good decision work with these frameworks
 instead of develop in each platform the app.

 Any idea, or user experience are welcome.

 I don't know if there is useful but the app that we are planning to
 transform is easy, it does not need the latest versions of each OS.

 Regards and thanks in advance,

 Adolfo.

 --
 El precio es lo que pagas. El valor es lo que recibes.
 Warren Buffet

 --
 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 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.


  --
 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 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.




-- 
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet

-- 
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 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: Framework app mobile

2012-02-13 Thread Alain Ekambi
Note that PhoneGap will not turn you web based app into a native app. It
will give it some native capabilities.
So your application will still be a web app but with a native shell  given
you access to the device api.

Concerning Gwt4Ti Mobile we have some pretty happy customers at the moment.
But  maybe some one using it will like to share his experience.

If  i m correct you have a Desktop GWT app that you want to turn into a
mobile app with some native capabilities.
Assuming you UI is mobile optimized  PhoneGap could be the way to go.
Because you could reuse most of your UI code and have some native access
through PhoneGap.

2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi Alain,

 Thank you for the info.

 We are interested in Native solutions.

 Basically, if I'm correct the best frameworks in order to have one app for
 each platform (from the same initial GWT app) are *Gwt4Ti* *Mobile *and *
 phoneGAP*.

 Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.

 Does someone works with these frameworks? Are there others?

 Thank you in advance,

 Adolfo.

 PD. I post this mail here because I'm interested (if is it possible) in
 create the initial app in GWT and then transform to native platforms.


 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Hi Adolfo,

 Like always it depends.
 Should your mobile app be web based or native ?

 If you are are looking for a webbased solution i d recommend :

 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created
 it, but also because it leverages Sencha Touch, which to me
 is the best mobile HTML5 framework on the market. We also added PhoneGap
 support if you want to add some native capabilities.

 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same author).
 But i think Gwt4Touch looks a bit better :)

 Native :
 On the other end Gwt4Ti Mobile will help you build native mobile apps by
 leveraging the Titanium runtime.
 So if you want to go native while leveraging GWT(specially all your back
 end code) Gwt4Ti mobile should help.



 If you have any question feel free to ping us on the forum

 www.emitrom.com/forum

 Cheers,

 Alain

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi all,

 I have developed a GWT app. Now, we are planning to create the same app
 to mobile devices (Android, Android Tablet, Iphone, Ipad, Blackberry...).

 After a fast google search, I have seen that the are some frameworks
 that allow write once, run everywhere like 
 mgwthttp://code.google.com/p/mgwt/
 , PhoneGap http://phonegap.com/, 
 gwt4timobilehttp://www.emitrom.com/gwt4timobile
 .

 The questions is that I don't what is the best, and if there are others.

 Also I don't know if there is a good decision work with these frameworks
 instead of develop in each platform the app.

 Any idea, or user experience are welcome.

 I don't know if there is useful but the app that we are planning to
 transform is easy, it does not need the latest versions of each OS.

 Regards and thanks in advance,

 Adolfo.

 --
 El precio es lo que pagas. El valor es lo que recibes.
 Warren Buffet

 --
 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 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.


  --
 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 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.




 --
 El precio es lo que pagas. El valor es lo que recibes.
 Warren Buffet

 --
 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 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.


-- 
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 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: Framework app mobile

2012-02-13 Thread Adolfo Panizo Touzon
I am more lost than I tought. Thank you for your patient :)

I have one big, and complex GWT app.

Now I'm interested in create other GWT app similar but more simple oriented
only to our clients (and avoid all the developers part).

The idea is to create this simple GWT app (this GWT app will include some
native capabilites ) and then, transform it into native platforms
(Android, Iphone, Blackberry...),

I asked at the beginning of this email if there was any framework that
allows it.

Now, thank you to your last answer I know that with phone gap is impossible
because this framework only creates web solutions (if I'm incorrect please,
let me know)

So, the only option that is correct is Gwt4Ti Mobile. Good.

While you were answering me I spent time reading  on the internet about
these problems, and I have more questions:

*How much does it cost *Gwt4Ti Mobile to develop an non open source app
(the simple GWT app)??* (I mean, I saw that I'll need the Appcelerator
Titanium Studio IDE, it costs an extra money)** Is there other option? Is
it possible to use others IDE, like eclipse?  *
*
*
*Are there other things that I must know?*

Excuse me for all this questions, but I need to send an inform to my bosses
:)

Thank you for all. If you don't understand anything, let me know, please
(I'm not good enough in English) .

Adolfo.

2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Note that PhoneGap will not turn you web based app into a native app. It
 will give it some native capabilities.
 So your application will still be a web app but with a native shell  given
 you access to the device api.

 Concerning Gwt4Ti Mobile we have some pretty happy customers at the
 moment. But  maybe some one using it will like to share his experience.

 If  i m correct you have a Desktop GWT app that you want to turn into a
 mobile app with some native capabilities.
 Assuming you UI is mobile optimized  PhoneGap could be the way to go.
 Because you could reuse most of your UI code and have some native access
 through PhoneGap.

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi Alain,

 Thank you for the info.

 We are interested in Native solutions.

 Basically, if I'm correct the best frameworks in order to have one app
 for each platform (from the same initial GWT app) are *Gwt4Ti* *Mobile *and
 *phoneGAP*.

 Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.

 Does someone works with these frameworks? Are there others?

 Thank you in advance,

 Adolfo.

 PD. I post this mail here because I'm interested (if is it possible) in
 create the initial app in GWT and then transform to native platforms.


 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Hi Adolfo,

 Like always it depends.
 Should your mobile app be web based or native ?

 If you are are looking for a webbased solution i d recommend :

 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created
 it, but also because it leverages Sencha Touch, which to me
 is the best mobile HTML5 framework on the market. We also added PhoneGap
 support if you want to add some native capabilities.

 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same
 author). But i think Gwt4Touch looks a bit better :)

 Native :
 On the other end Gwt4Ti Mobile will help you build native mobile apps by
 leveraging the Titanium runtime.
 So if you want to go native while leveraging GWT(specially all your back
 end code) Gwt4Ti mobile should help.



 If you have any question feel free to ping us on the forum

 www.emitrom.com/forum

 Cheers,

 Alain

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi all,

 I have developed a GWT app. Now, we are planning to create the same app
 to mobile devices (Android, Android Tablet, Iphone, Ipad, Blackberry...).

 After a fast google search, I have seen that the are some frameworks
 that allow write once, run everywhere like 
 mgwthttp://code.google.com/p/mgwt/
 , PhoneGap http://phonegap.com/, 
 gwt4timobilehttp://www.emitrom.com/gwt4timobile
 .

 The questions is that I don't what is the best, and if there are others.

 Also I don't know if there is a good decision work with these
 frameworks instead of develop in each platform the app.

 Any idea, or user experience are welcome.

 I don't know if there is useful but the app that we are planning to
 transform is easy, it does not need the latest versions of each OS.

 Regards and thanks in advance,

 Adolfo.

 --
 El precio es lo que pagas. El valor es lo que recibes.
 Warren Buffet

 --
 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 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.


  --
 You received this message because you are subscribed to the Google
 Groups 

java.lang.NoClassDefFoundError: com/google/gwt/core/client/JavaScriptObject in hosted mode (only)

2012-02-13 Thread Mark
I have been developing an app of several thousand lines that has
worked great for weeks.All of a sudden yesterday it stopped loading in
hosted mode (eclipse Indigo, chrome 16.0.912.77, GWT 2.4.0, Google
plugin 3.7) .  As described below, the problem is inherits
name=com.google.gwt.visualization.Visualization/ in
myProject.gwt.xml that is included for charts (and this used to
work...)

 On loading (hosted mode on jetty), it raises this error:

[ERROR] [reagentcalculator] - Failed to load module
'reagentcalculator' from user agent 'Mozilla/5.0 (Windows NT 6.1;
WOW64)   AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77
Safari/535.7' at quickstart.local:8243


21:48:57.007 [ERROR] [reagentcalculator] Unable to initialize static
dispatcher

java.lang.NoClassDefFoundError: com/google/gwt/core/client/
JavaScriptObject
at java.lang.ClassLoader.findBootstrapClass(Native Method)
at java.lang.ClassLoader.findBootstrapClassOrNull(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at
com.google.gwt.dev.shell.CompilingClassLoader.findClass(CompilingClassLoader.java:
1085)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at com.google.gwt.dev.shell.JsValueGlue.set(JsValueGlue.java:220)
at
com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:
129)
at
com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:
561)
at
com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:
289)
at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:
332)
at
com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:
200)
at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:
525)
at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:
363)
at java.lang.Thread.run(Unknown Source)


Next step was to try a new project from the GWT template... it
worked!  Okay, so I assumed I introduced a bug.  Over several hours, I
reduced my application down to the following (which you may recognize
as the preamble to the template).


public void onModuleLoad() {
final Button sendButton = new Button(Send);
final TextBox nameField = new TextBox();
nameField.setText(GWT User);
final Label errorLabel = new Label();

// We can add style names to widgets
sendButton.addStyleName(sendButton);

// Add the nameField and sendButton to the RootPanel
// Use RootPanel.get() to get the entire body element
RootPanel.get(nameFieldContainer).add(nameField);
RootPanel.get(sendButtonContainer).add(sendButton);
RootPanel.get(errorLabelContainer).add(errorLabel);
}

Alas, it STILL throws the error!  Tracked down the problem to the line
in myProject.gwt.xml
inherits name=com.google.gwt.visualization.Visualization/
because I am using google charts in the full app (but not in the small
version above).   gwt-visualization.jar (latest 1.1.2) is copied into
WEB-INF/lib and in project build path.  If I comment out the inherits
line, The code above works fine.

Any ideas?

Thanks,
Mark

-- 
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 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.



gwt_captcha_php

2012-02-13 Thread brip lawlaw
Hi,

I'm wondering how to implement captcha in gwt with php on the server
side. Anyone already tried this? Please share. Thanks

-- 
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 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: Mulitple pages using GWT

2012-02-13 Thread brip lawlaw
I don't quite understand the problem but I think what you are trying to do 
is to clear the content and display whatever it is when you click the 
button.

I'm not sure but here it is:

RootPanel.get(slot).clear();
RootPanel.get(slot).add(widget);

Correct me if I'm wrong.

-- 
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/-/iJ8Er7n8J18J.
To 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.



Menubar Sub-menu Arrows .

2012-02-13 Thread Chris
Hello,

I currently building a website using GWT, with few panels and some CSS
styles .
I encountered a problem when i was building this menubar . On this
menubar's sub-menus, there's an arrow in the right side of the sub-
menus, and some background-color (or image?) that i cant change or get
rid of no matter how much i change the code .

The arrow is like this :
http://i39.tinypic.com/2w4bo91.png

Why there are color differences on my sub-menus? i tried to change the
CSS style on one of the sub-menu (now colored black in the picture
above), but the standard silver-colored sub-menus that showed
everytime i hover on my sub menus seems unchangeable . Is there some
way I can change the CSS style of that standard silver color ?

Is that arrow on the right side of my sub-menus is the reason why i
cant change my CSS ? is there any way to get rid of those arrows ?

Any help / suggestions will be greatly appreciated .
Thanks .


Chris .

-- 
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 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.



GWT Cell List Issue

2012-02-13 Thread Santhosh Kumar
Hi,

 We have CellList on our application within main panel.When we use
shift key to select multiple values in Cell List,the entire screen get
selected instead of the the items in cell list.Is there are solution
for this?

Regards
Santhosh

-- 
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 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.



problem when compiling using gwt 2.1.1 and gxt 1.2.5

2012-02-13 Thread hassene.Mchaalia
I 'm working on application and need to use drag and drop
functionnalities offered by GXT, I'm using GWT 2.1.1 with GXT 1.2.5
and when compiling i had this error

[DEBUG] - Validating newly compiled units
[ERROR] - Errors in 'jar:file:/gxt-1.2.5/gxt.jar!/com/extjs/gxt/ui/
client/widget/Component.java'
[ERROR]  - Line 1280: Cannot reduce the visibility of the
inherited method from Widget
[TRACE]  - Finding entry point classes
[ERROR]  - Unable to find type
'com.sun.xgl.editor.client.GxtSample'
[ERROR]  - Hint: Previous compiler errors may have made this
type unavailable
[ERROR] - Hint: Check the inheritance chain from your module;
it may not be inheriting a required module or a module may not be
adding its source path entries properly
[ERROR]  - Failed to load module 'gxtsample' from user agent 'Mozilla/
5.0 (Ubuntu; X11; Linux i686; rv:9.0.1) Gecko/20100101 Firefox/9.0.1'
at localhost:50680

Is that due to incompatibility between both versions of gwt and gxt ?
 In this case can I use gwt-dnd inspite of native gxt drag and drop ?

-- 
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 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: Framework app mobile

2012-02-13 Thread Daniel Kurka
If you built an html5 app and wrap it with phonegap you will end up with an
app that is not distinguishable from an native app. Phonegap exposes all
native capabilities through a javascript API.

The rest is simply UI. There are lots of good mobile UIs out there. The one
I would pledge for (because I am the author) is mgwt  http://www.m-gwt.com .
If you combine it with gwt phonegap you got a great framework for writing
cross platform mobile apps...

- Daniel



2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 I am more lost than I tought. Thank you for your patient :)

 I have one big, and complex GWT app.

 Now I'm interested in create other GWT app similar but more simple
 oriented only to our clients (and avoid all the developers part).

 The idea is to create this simple GWT app (this GWT app will include some
 native capabilites ) and then, transform it into native platforms
 (Android, Iphone, Blackberry...),

 I asked at the beginning of this email if there was any framework that
 allows it.

 Now, thank you to your last answer I know that with phone gap is
 impossible because this framework only creates web solutions (if I'm
 incorrect please, let me know)

 So, the only option that is correct is Gwt4Ti Mobile. Good.

 While you were answering me I spent time reading  on the internet about
 these problems, and I have more questions:

 *How much does it cost *Gwt4Ti Mobile to develop an non open source app
 (the simple GWT app)??* (I mean, I saw that I'll need the Appcelerator
 Titanium Studio IDE, it costs an extra money)** Is there other option? Is
 it possible to use others IDE, like eclipse?  *
 *
 *
 *Are there other things that I must know?*

 Excuse me for all this questions, but I need to send an inform to my
 bosses :)

 Thank you for all. If you don't understand anything, let me know, please
 (I'm not good enough in English) .

 Adolfo.

 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Note that PhoneGap will not turn you web based app into a native app. It
 will give it some native capabilities.
 So your application will still be a web app but with a native shell
  given you access to the device api.

 Concerning Gwt4Ti Mobile we have some pretty happy customers at the
 moment. But  maybe some one using it will like to share his experience.

 If  i m correct you have a Desktop GWT app that you want to turn into a
 mobile app with some native capabilities.
 Assuming you UI is mobile optimized  PhoneGap could be the way to go.
 Because you could reuse most of your UI code and have some native access
 through PhoneGap.

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi Alain,

 Thank you for the info.

 We are interested in Native solutions.

 Basically, if I'm correct the best frameworks in order to have one app
 for each platform (from the same initial GWT app) are *Gwt4Ti* *Mobile *and
 *phoneGAP*.

 Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.

 Does someone works with these frameworks? Are there others?

 Thank you in advance,

 Adolfo.

 PD. I post this mail here because I'm interested (if is it possible) in
 create the initial app in GWT and then transform to native platforms.


 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Hi Adolfo,

 Like always it depends.
 Should your mobile app be web based or native ?

 If you are are looking for a webbased solution i d recommend :

 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created
 it, but also because it leverages Sencha Touch, which to me
 is the best mobile HTML5 framework on the market. We also added
 PhoneGap support if you want to add some native capabilities.

 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same
 author). But i think Gwt4Touch looks a bit better :)

 Native :
 On the other end Gwt4Ti Mobile will help you build native mobile apps
 by leveraging the Titanium runtime.
 So if you want to go native while leveraging GWT(specially all your
 back end code) Gwt4Ti mobile should help.



 If you have any question feel free to ping us on the forum

 www.emitrom.com/forum

 Cheers,

 Alain

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi all,

 I have developed a GWT app. Now, we are planning to create the same
 app to mobile devices (Android, Android Tablet, Iphone, Ipad,
 Blackberry...).

 After a fast google search, I have seen that the are some frameworks
 that allow write once, run everywhere like 
 mgwthttp://code.google.com/p/mgwt/
 , PhoneGap http://phonegap.com/, 
 gwt4timobilehttp://www.emitrom.com/gwt4timobile
 .

 The questions is that I don't what is the best, and if there are
 others.

 Also I don't know if there is a good decision work with these
 frameworks instead of develop in each platform the app.

 Any idea, or user experience are welcome.

 I don't know if there is useful but the app that we are planning to
 transform is easy, it does not need the latest versions of each OS.

 Regards and thanks in 

Re: Framework app mobile

2012-02-13 Thread Adolfo Panizo Touzon
If I understand I can develop a web app with *GWT*, in this app If I use
the *mgwt *framework, my *GWT *app looks like and mobile app.

Then, when I finish, with/using *gwt-phonegap* I can transform it into
native apps that I can hung up in the App Store (Iphone), Market
Place(Android)...

All of this in Eclipse.

Am I correct?

Really thanks,

Adolfo.

2012/2/13 Daniel Kurka kurka.dan...@googlemail.com

 If you built an html5 app and wrap it with phonegap you will end up with
 an app that is not distinguishable from an native app. Phonegap exposes
 all native capabilities through a javascript API.

 The rest is simply UI. There are lots of good mobile UIs out there. The
 one I would pledge for (because I am the author) is mgwt
 http://www.m-gwt.com . If you combine it with gwt phonegap you got a
 great framework for writing cross platform mobile apps...

 - Daniel



 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 I am more lost than I tought. Thank you for your patient :)

 I have one big, and complex GWT app.

 Now I'm interested in create other GWT app similar but more simple
 oriented only to our clients (and avoid all the developers part).

 The idea is to create this simple GWT app (this GWT app will include some
 native capabilites ) and then, transform it into native platforms
 (Android, Iphone, Blackberry...),

  I asked at the beginning of this email if there was any framework that
 allows it.

 Now, thank you to your last answer I know that with phone gap is
 impossible because this framework only creates web solutions (if I'm
 incorrect please, let me know)

 So, the only option that is correct is Gwt4Ti Mobile. Good.

 While you were answering me I spent time reading  on the internet about
 these problems, and I have more questions:

 *How much does it cost *Gwt4Ti Mobile to develop an non open source app
 (the simple GWT app)??* (I mean, I saw that I'll need the Appcelerator
 Titanium Studio IDE, it costs an extra money)** Is there other option?
 Is it possible to use others IDE, like eclipse?  *
 *
 *
 *Are there other things that I must know?*

 Excuse me for all this questions, but I need to send an inform to my
 bosses :)

 Thank you for all. If you don't understand anything, let me know, please
 (I'm not good enough in English) .

 Adolfo.

 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Note that PhoneGap will not turn you web based app into a native app. It
 will give it some native capabilities.
 So your application will still be a web app but with a native shell
  given you access to the device api.

 Concerning Gwt4Ti Mobile we have some pretty happy customers at the
 moment. But  maybe some one using it will like to share his experience.

 If  i m correct you have a Desktop GWT app that you want to turn into a
 mobile app with some native capabilities.
 Assuming you UI is mobile optimized  PhoneGap could be the way to go.
 Because you could reuse most of your UI code and have some native access
 through PhoneGap.

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi Alain,

 Thank you for the info.

 We are interested in Native solutions.

 Basically, if I'm correct the best frameworks in order to have one app
 for each platform (from the same initial GWT app) are *Gwt4Ti* *Mobile
 *and *phoneGAP*.

 Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.

 Does someone works with these frameworks? Are there others?

 Thank you in advance,

 Adolfo.

 PD. I post this mail here because I'm interested (if is it possible) in
 create the initial app in GWT and then transform to native platforms.


 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Hi Adolfo,

 Like always it depends.
 Should your mobile app be web based or native ?

 If you are are looking for a webbased solution i d recommend :

 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created
 it, but also because it leverages Sencha Touch, which to me
 is the best mobile HTML5 framework on the market. We also added
 PhoneGap support if you want to add some native capabilities.

 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same
 author). But i think Gwt4Touch looks a bit better :)

 Native :
 On the other end Gwt4Ti Mobile will help you build native mobile apps
 by leveraging the Titanium runtime.
 So if you want to go native while leveraging GWT(specially all your
 back end code) Gwt4Ti mobile should help.



 If you have any question feel free to ping us on the forum

 www.emitrom.com/forum

 Cheers,

 Alain

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi all,

 I have developed a GWT app. Now, we are planning to create the same
 app to mobile devices (Android, Android Tablet, Iphone, Ipad,
 Blackberry...).

 After a fast google search, I have seen that the are some frameworks
 that allow write once, run everywhere like 
 mgwthttp://code.google.com/p/mgwt/
 , PhoneGap http://phonegap.com/, 
 

Re: Framework app mobile

2012-02-13 Thread Alain Ekambi
Again PhoneGap will NOT turn your app into a native app. It will give it
native access. The UI of your application will still be browser based,
meaning rendered by the browser of  the mobile device.



The bottom line is :



1)  You want your UI to be HTML5(JS/HTML/CSS) based   :  Gwt4Touch,
mgwt (or any other) + PhoneGap should do it

2)  You want native(to each platform)  UI widgets Gwt4Titanium mobile
will do it.



Concerning pricing  or any other question concerning Gwt4Ti Mobile feel
free to ping us at www.emitrom.com




2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 If I understand I can develop a web app with *GWT*, in this app If I use
 the *mgwt *framework, my *GWT *app looks like and mobile app.

 Then, when I finish, with/using *gwt-phonegap* I can transform it into
 native apps that I can hung up in the App Store (Iphone), Market
 Place(Android)...

 All of this in Eclipse.

 Am I correct?

 Really thanks,

 Adolfo.

 2012/2/13 Daniel Kurka kurka.dan...@googlemail.com

 If you built an html5 app and wrap it with phonegap you will end up with
 an app that is not distinguishable from an native app. Phonegap exposes
 all native capabilities through a javascript API.

 The rest is simply UI. There are lots of good mobile UIs out there. The
 one I would pledge for (because I am the author) is mgwt
 http://www.m-gwt.com . If you combine it with gwt phonegap you got a
 great framework for writing cross platform mobile apps...

 - Daniel



 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 I am more lost than I tought. Thank you for your patient :)

 I have one big, and complex GWT app.

 Now I'm interested in create other GWT app similar but more simple
 oriented only to our clients (and avoid all the developers part).

 The idea is to create this simple GWT app (this GWT app will include
 some native capabilites ) and then, transform it into native platforms
 (Android, Iphone, Blackberry...),

  I asked at the beginning of this email if there was any framework that
 allows it.

 Now, thank you to your last answer I know that with phone gap is
 impossible because this framework only creates web solutions (if I'm
 incorrect please, let me know)

 So, the only option that is correct is Gwt4Ti Mobile. Good.

 While you were answering me I spent time reading  on the internet about
 these problems, and I have more questions:

 *How much does it cost *Gwt4Ti Mobile to develop an non open source app
 (the simple GWT app)??* (I mean, I saw that I'll need the Appcelerator
 Titanium Studio IDE, it costs an extra money)** Is there other option?
 Is it possible to use others IDE, like eclipse?  *
 *
 *
 *Are there other things that I must know?*

 Excuse me for all this questions, but I need to send an inform to my
 bosses :)

 Thank you for all. If you don't understand anything, let me know, please
 (I'm not good enough in English) .

 Adolfo.

 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Note that PhoneGap will not turn you web based app into a native app.
 It will give it some native capabilities.
 So your application will still be a web app but with a native shell
  given you access to the device api.

 Concerning Gwt4Ti Mobile we have some pretty happy customers at the
 moment. But  maybe some one using it will like to share his experience.

 If  i m correct you have a Desktop GWT app that you want to turn into a
 mobile app with some native capabilities.
 Assuming you UI is mobile optimized  PhoneGap could be the way to go.
 Because you could reuse most of your UI code and have some native access
 through PhoneGap.

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi Alain,

 Thank you for the info.

 We are interested in Native solutions.

 Basically, if I'm correct the best frameworks in order to have one app
 for each platform (from the same initial GWT app) are *Gwt4Ti* *Mobile
 *and *phoneGAP*.

 Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.

 Does someone works with these frameworks? Are there others?

 Thank you in advance,

 Adolfo.

 PD. I post this mail here because I'm interested (if is it possible)
 in create the initial app in GWT and then transform to native platforms.


 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Hi Adolfo,

 Like always it depends.
 Should your mobile app be web based or native ?

 If you are are looking for a webbased solution i d recommend :

 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we
 created it, but also because it leverages Sencha Touch, which to me
 is the best mobile HTML5 framework on the market. We also added
 PhoneGap support if you want to add some native capabilities.

 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same
 author). But i think Gwt4Touch looks a bit better :)

 Native :
 On the other end Gwt4Ti Mobile will help you build native mobile apps
 by leveraging the Titanium runtime.
 So if you want to go native while leveraging 

Re: Framework app mobile

2012-02-13 Thread Kira Qian
AFAIK, only native app developed via cocoa framework is allowed to run on iOS. 
iPhone doesn't support to run java or other code. So i don't think it is 
possible to run your GWT on iPhone. 

Sincerely,
Light Qian
-
Sent from iCloud (Mac OSX Lion mail client)

On Feb 13, 2012, at 9:27 PM, Adolfo Panizo Touzon wrote:

 If I understand I can develop a web app with GWT, in this app If I use the 
 mgwt framework, my GWT app looks like and mobile app. 
 
 Then, when I finish, with/using gwt-phonegap I can transform it into native 
 apps that I can hung up in the App Store (Iphone), Market Place(Android)...
 
 All of this in Eclipse. 
 
 Am I correct?
 
 Really thanks,
 
 Adolfo.
 
 2012/2/13 Daniel Kurka kurka.dan...@googlemail.com
 If you built an html5 app and wrap it with phonegap you will end up with an 
 app that is not distinguishable from an native app. Phonegap exposes all 
 native capabilities through a javascript API.
 
 The rest is simply UI. There are lots of good mobile UIs out there. The one I 
 would pledge for (because I am the author) is mgwt  http://www.m-gwt.com . If 
 you combine it with gwt phonegap you got a great framework for writing cross 
 platform mobile apps...
 
 - Daniel
 
 
 
 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com
 I am more lost than I tought. Thank you for your patient :)
 
 I have one big, and complex GWT app.
 
 Now I'm interested in create other GWT app similar but more simple oriented 
 only to our clients (and avoid all the developers part). 
 
 The idea is to create this simple GWT app (this GWT app will include some 
 native capabilites ) and then, transform it into native platforms (Android, 
 Iphone, Blackberry...),
 
 I asked at the beginning of this email if there was any framework that allows 
 it.
 
 Now, thank you to your last answer I know that with phone gap is impossible 
 because this framework only creates web solutions (if I'm incorrect please, 
 let me know)
 
 So, the only option that is correct is Gwt4Ti Mobile. Good.
 
 While you were answering me I spent time reading  on the internet about these 
 problems, and I have more questions:
 
 How much does it cost Gwt4Ti Mobile to develop an non open source app (the 
 simple GWT app)?? (I mean, I saw that I'll need the Appcelerator Titanium 
 Studio IDE, it costs an extra money) Is there other option? Is it possible to 
 use others IDE, like eclipse?  
 
 Are there other things that I must know?
 
 Excuse me for all this questions, but I need to send an inform to my bosses :)
 
 Thank you for all. If you don't understand anything, let me know, please (I'm 
 not good enough in English) .
 
 Adolfo.
 
 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com
 Note that PhoneGap will not turn you web based app into a native app. It will 
 give it some native capabilities. 
 So your application will still be a web app but with a native shell  given 
 you access to the device api. 
 
 Concerning Gwt4Ti Mobile we have some pretty happy customers at the moment. 
 But  maybe some one using it will like to share his experience.
 
 If  i m correct you have a Desktop GWT app that you want to turn into a 
 mobile app with some native capabilities. 
 Assuming you UI is mobile optimized  PhoneGap could be the way to go. Because 
 you could reuse most of your UI code and have some native access through 
 PhoneGap.
 
 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com
 Hi Alain,
 
 Thank you for the info.
 
 We are interested in Native solutions.
 
 Basically, if I'm correct the best frameworks in order to have one app for 
 each platform (from the same initial GWT app) are Gwt4Ti Mobile and phoneGAP. 
 
 Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.
 
 Does someone works with these frameworks? Are there others?
 
 Thank you in advance,
 
 Adolfo. 
 
 PD. I post this mail here because I'm interested (if is it possible) in 
 create the initial app in GWT and then transform to native platforms. 
 
 
 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com
 Hi Adolfo,
 
 Like always it depends.
 Should your mobile app be web based or native ? 
 
 If you are are looking for a webbased solution i d recommend :
 
 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created it, but 
 also because it leverages Sencha Touch, which to me 
 is the best mobile HTML5 framework on the market. We also added PhoneGap 
 support if you want to add some native capabilities.
 
 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same author). But 
 i think Gwt4Touch looks a bit better :)
 
 Native : 
 On the other end Gwt4Ti Mobile will help you build native mobile apps by 
 leveraging the Titanium runtime.
 So if you want to go native while leveraging GWT(specially all your back end 
 code) Gwt4Ti mobile should help.
 
 
 
 If you have any question feel free to ping us on the forum 
 
 www.emitrom.com/forum
 
 Cheers,
 
 Alain 
 
 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com
 

Re: Framework app mobile

2012-02-13 Thread Raphael André Bauer
On Mon, Feb 13, 2012 at 2:40 PM, Kira Qian kiraq...@me.com wrote:
 AFAIK, only native app developed via cocoa framework is allowed to run on
 iOS. iPhone doesn't support to run java or other code. So i don't think it
 is possible to run your GWT on iPhone.

That's plain wrong... We got GWT Apps in Apple's Store...

Best,

Raphael

 Sincerely,
 Light Qian
 -
 Sent from iCloud (Mac OSX Lion mail client)

 On Feb 13, 2012, at 9:27 PM, Adolfo Panizo Touzon wrote:

 If I understand I can develop a web app with GWT, in this app If I use the
 mgwt framework, my GWT app looks like and mobile app.

 Then, when I finish, with/using gwt-phonegap I can transform it into native
 apps that I can hung up in the App Store (Iphone), Market Place(Android)...

 All of this in Eclipse.

 Am I correct?

 Really thanks,

 Adolfo.

 2012/2/13 Daniel Kurka kurka.dan...@googlemail.com

 If you built an html5 app and wrap it with phonegap you will end up with
 an app that is not distinguishable from an native app. Phonegap exposes
 all native capabilities through a javascript API.

 The rest is simply UI. There are lots of good mobile UIs out there. The
 one I would pledge for (because I am the author) is mgwt
  http://www.m-gwt.com . If you combine it with gwt phonegap you got a great
 framework for writing cross platform mobile apps...

 - Daniel



 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 I am more lost than I tought. Thank you for your patient :)

 I have one big, and complex GWT app.

 Now I'm interested in create other GWT app similar but more simple
 oriented only to our clients (and avoid all the developers part).

 The idea is to create this simple GWT app (this GWT app will include some
 native capabilites ) and then, transform it into native platforms
 (Android, Iphone, Blackberry...),

 I asked at the beginning of this email if there was any framework that
 allows it.

 Now, thank you to your last answer I know that with phone gap is
 impossible because this framework only creates web solutions (if I'm
 incorrect please, let me know)

 So, the only option that is correct is Gwt4Ti Mobile. Good.

 While you were answering me I spent time reading  on the internet about
 these problems, and I have more questions:

 How much does it cost Gwt4Ti Mobile to develop an non open source app
 (the simple GWT app)?? (I mean, I saw that I'll need the Appcelerator
 Titanium Studio IDE, it costs an extra money) Is there other option? Is it
 possible to use others IDE, like eclipse?

 Are there other things that I must know?

 Excuse me for all this questions, but I need to send an inform to my
 bosses :)

 Thank you for all. If you don't understand anything, let me know, please
 (I'm not good enough in English) .

 Adolfo.

 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Note that PhoneGap will not turn you web based app into a native app. It
 will give it some native capabilities.
 So your application will still be a web app but with a native shell
  given you access to the device api.

 Concerning Gwt4Ti Mobile we have some pretty happy customers at the
 moment. But  maybe some one using it will like to share his experience.

 If  i m correct you have a Desktop GWT app that you want to turn into a
 mobile app with some native capabilities.
 Assuming you UI is mobile optimized  PhoneGap could be the way to go.
 Because you could reuse most of your UI code and have some native access
 through PhoneGap.

 2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Hi Alain,

 Thank you for the info.

 We are interested in Native solutions.

 Basically, if I'm correct the best frameworks in order to have one app
 for each platform (from the same initial GWT app) are Gwt4Ti Mobile and
 phoneGAP.

 Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.

 Does someone works with these frameworks? Are there others?

 Thank you in advance,

 Adolfo.

 PD. I post this mail here because I'm interested (if is it possible) in
 create the initial app in GWT and then transform to native platforms.


 2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 Hi Adolfo,

 Like always it depends.
 Should your mobile app be web based or native ?

 If you are are looking for a webbased solution i d recommend :

 Web :
 1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we created
 it, but also because it leverages Sencha Touch, which to me
 is the best mobile HTML5 framework on the market. We also added
 PhoneGap support if you want to add some native capabilities.

 2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same
 author). But i think Gwt4Touch looks a bit better :)

 Native :
 On the other end Gwt4Ti Mobile will help you build native mobile apps
 by leveraging the Titanium runtime.
 So if you want to go native while leveraging GWT(specially all your
 back end code) Gwt4Ti mobile should help.



 If you have any question feel free to ping us on the forum

 www.emitrom.com/forum

 Cheers,

 Alain


Re: Framework app mobile

2012-02-13 Thread Alain Ekambi
@Kira

GWT generates  JavaScript. And  that JS can run either as a regular Webapp
(+ eventual PhoneGap)   or as a native App (through Titanium).

2012/2/13 Raphael André Bauer raphael.andre.ba...@gmail.com

 On Mon, Feb 13, 2012 at 2:40 PM, Kira Qian kiraq...@me.com wrote:
  AFAIK, only native app developed via cocoa framework is allowed to run on
  iOS. iPhone doesn't support to run java or other code. So i don't think
 it
  is possible to run your GWT on iPhone.

 That's plain wrong... We got GWT Apps in Apple's Store...

 Best,

 Raphael
 
  Sincerely,
  Light Qian
  -
  Sent from iCloud (Mac OSX Lion mail client)
 
  On Feb 13, 2012, at 9:27 PM, Adolfo Panizo Touzon wrote:
 
  If I understand I can develop a web app with GWT, in this app If I use
 the
  mgwt framework, my GWT app looks like and mobile app.
 
  Then, when I finish, with/using gwt-phonegap I can transform it into
 native
  apps that I can hung up in the App Store (Iphone), Market
 Place(Android)...
 
  All of this in Eclipse.
 
  Am I correct?
 
  Really thanks,
 
  Adolfo.
 
  2012/2/13 Daniel Kurka kurka.dan...@googlemail.com
 
  If you built an html5 app and wrap it with phonegap you will end up with
  an app that is not distinguishable from an native app. Phonegap
 exposes
  all native capabilities through a javascript API.
 
  The rest is simply UI. There are lots of good mobile UIs out there. The
  one I would pledge for (because I am the author) is mgwt
   http://www.m-gwt.com . If you combine it with gwt phonegap you got a
 great
  framework for writing cross platform mobile apps...
 
  - Daniel
 
 
 
  2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com
 
  I am more lost than I tought. Thank you for your patient :)
 
  I have one big, and complex GWT app.
 
  Now I'm interested in create other GWT app similar but more simple
  oriented only to our clients (and avoid all the developers part).
 
  The idea is to create this simple GWT app (this GWT app will include
 some
  native capabilites ) and then, transform it into native platforms
  (Android, Iphone, Blackberry...),
 
  I asked at the beginning of this email if there was any framework that
  allows it.
 
  Now, thank you to your last answer I know that with phone gap is
  impossible because this framework only creates web solutions (if I'm
  incorrect please, let me know)
 
  So, the only option that is correct is Gwt4Ti Mobile. Good.
 
  While you were answering me I spent time reading  on the internet about
  these problems, and I have more questions:
 
  How much does it cost Gwt4Ti Mobile to develop an non open source app
  (the simple GWT app)?? (I mean, I saw that I'll need the Appcelerator
  Titanium Studio IDE, it costs an extra money) Is there other option?
 Is it
  possible to use others IDE, like eclipse?
 
  Are there other things that I must know?
 
  Excuse me for all this questions, but I need to send an inform to my
  bosses :)
 
  Thank you for all. If you don't understand anything, let me know,
 please
  (I'm not good enough in English) .
 
  Adolfo.
 
  2012/2/13 Alain Ekambi jazzmatad...@googlemail.com
 
  Note that PhoneGap will not turn you web based app into a native app.
 It
  will give it some native capabilities.
  So your application will still be a web app but with a native shell
   given you access to the device api.
 
  Concerning Gwt4Ti Mobile we have some pretty happy customers at the
  moment. But  maybe some one using it will like to share his
 experience.
 
  If  i m correct you have a Desktop GWT app that you want to turn into
 a
  mobile app with some native capabilities.
  Assuming you UI is mobile optimized  PhoneGap could be the way to go.
  Because you could reuse most of your UI code and have some native
 access
  through PhoneGap.
 
  2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com
 
  Hi Alain,
 
  Thank you for the info.
 
  We are interested in Native solutions.
 
  Basically, if I'm correct the best frameworks in order to have one
 app
  for each platform (from the same initial GWT app) are Gwt4Ti Mobile
 and
  phoneGAP.
 
  Alain, in the last mail explains that Gwt4Ti Mobile would be helpful.
 
  Does someone works with these frameworks? Are there others?
 
  Thank you in advance,
 
  Adolfo.
 
  PD. I post this mail here because I'm interested (if is it possible)
 in
  create the initial app in GWT and then transform to native platforms.
 
 
  2012/2/13 Alain Ekambi jazzmatad...@googlemail.com
 
  Hi Adolfo,
 
  Like always it depends.
  Should your mobile app be web based or native ?
 
  If you are are looking for a webbased solution i d recommend :
 
  Web :
  1) Gwt4Touch (www.emitrom.com/gwt4touch). Not only because we
 created
  it, but also because it leverages Sencha Touch, which to me
  is the best mobile HTML5 framework on the market. We also added
  PhoneGap support if you want to add some native capabilities.
 
  2)i also like mgwt a lot. (The Gwt PhoneGap API is from the same
  author). But i think 

Re: Framework app mobile

2012-02-13 Thread Adolfo Panizo Touzon
@Alain,

I'm sorry for the misunderstanding. Now I think I solve my doubts. At the
beginning I thought that each platform only can understand its UI Widgets.

So, if I want native app, with their native UI Widgets  I must use
Gwt4Titanium.
But I can use HTML5(JS/HTML/CSS) widgets to create the UI and then upload
the app to the Market place, App store, etc...

In my case my app will be very simple, so, it's interesting for me,  use
the HTML5(JS/HTML/CSS) widgets to create the UI (and the app).

So, basically both methods are valid for me.

Now I'm going to take a look in which method are more easy, cheap and
better.

Again, suggestions and comments are welcome (@toEveryBody).

Really thanks,

Adolfo.


2012/2/13 Alain Ekambi jazzmatad...@googlemail.com

 @Kira

 GWT generates  JavaScript. And  that JS can run either as a regular Webapp
 (+ eventual PhoneGap)   or as a native App (through Titanium).

 2012/2/13 Raphael André Bauer raphael.andre.ba...@gmail.com

 On Mon, Feb 13, 2012 at 2:40 PM, Kira Qian kiraq...@me.com wrote:
  AFAIK, only native app developed via cocoa framework is allowed to run
 on
  iOS. iPhone doesn't support to run java or other code. So i don't think
 it
  is possible to run your GWT on iPhone.

 That's plain wrong... We got GWT Apps in Apple's Store...

 Best,

 Raphael
 
  Sincerely,
  Light Qian
  -
  Sent from iCloud (Mac OSX Lion mail client)
 
  On Feb 13, 2012, at 9:27 PM, Adolfo Panizo Touzon wrote:
 
  If I understand I can develop a web app with GWT, in this app If I use
 the
  mgwt framework, my GWT app looks like and mobile app.
 
  Then, when I finish, with/using gwt-phonegap I can transform it into
 native
  apps that I can hung up in the App Store (Iphone), Market
 Place(Android)...
 
  All of this in Eclipse.
 
  Am I correct?
 
  Really thanks,
 
  Adolfo.
 
  2012/2/13 Daniel Kurka kurka.dan...@googlemail.com
 
  If you built an html5 app and wrap it with phonegap you will end up
 with
  an app that is not distinguishable from an native app. Phonegap
 exposes
  all native capabilities through a javascript API.
 
  The rest is simply UI. There are lots of good mobile UIs out there. The
  one I would pledge for (because I am the author) is mgwt
   http://www.m-gwt.com . If you combine it with gwt phonegap you got a
 great
  framework for writing cross platform mobile apps...
 
  - Daniel
 
 
 
  2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com
 
  I am more lost than I tought. Thank you for your patient :)
 
  I have one big, and complex GWT app.
 
  Now I'm interested in create other GWT app similar but more simple
  oriented only to our clients (and avoid all the developers part).
 
  The idea is to create this simple GWT app (this GWT app will include
 some
  native capabilites ) and then, transform it into native platforms
  (Android, Iphone, Blackberry...),
 
  I asked at the beginning of this email if there was any framework that
  allows it.
 
  Now, thank you to your last answer I know that with phone gap is
  impossible because this framework only creates web solutions (if I'm
  incorrect please, let me know)
 
  So, the only option that is correct is Gwt4Ti Mobile. Good.
 
  While you were answering me I spent time reading  on the internet
 about
  these problems, and I have more questions:
 
  How much does it cost Gwt4Ti Mobile to develop an non open source app
  (the simple GWT app)?? (I mean, I saw that I'll need the Appcelerator
  Titanium Studio IDE, it costs an extra money) Is there other option?
 Is it
  possible to use others IDE, like eclipse?
 
  Are there other things that I must know?
 
  Excuse me for all this questions, but I need to send an inform to my
  bosses :)
 
  Thank you for all. If you don't understand anything, let me know,
 please
  (I'm not good enough in English) .
 
  Adolfo.
 
  2012/2/13 Alain Ekambi jazzmatad...@googlemail.com
 
  Note that PhoneGap will not turn you web based app into a native
 app. It
  will give it some native capabilities.
  So your application will still be a web app but with a native shell
   given you access to the device api.
 
  Concerning Gwt4Ti Mobile we have some pretty happy customers at the
  moment. But  maybe some one using it will like to share his
 experience.
 
  If  i m correct you have a Desktop GWT app that you want to turn
 into a
  mobile app with some native capabilities.
  Assuming you UI is mobile optimized  PhoneGap could be the way to go.
  Because you could reuse most of your UI code and have some native
 access
  through PhoneGap.
 
  2012/2/13 Adolfo Panizo Touzon adolfo.pan...@gmail.com
 
  Hi Alain,
 
  Thank you for the info.
 
  We are interested in Native solutions.
 
  Basically, if I'm correct the best frameworks in order to have one
 app
  for each platform (from the same initial GWT app) are Gwt4Ti Mobile
 and
  phoneGAP.
 
  Alain, in the last mail explains that Gwt4Ti Mobile would be
 helpful.
 
  Does someone works with these frameworks? Are there others?
 
  

GWT Cell Table support flex grid like layout

2012-02-13 Thread Yan
Hi there,

Any way to get GWT cell table (GWT 2.4) to support flex layout?  For
instance, setColSpan() like Flex Table does?

Thanks,
Yan

-- 
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 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: Framework app mobile

2012-02-13 Thread Raphael André Bauer
On Mon, Feb 13, 2012 at 3:05 PM, Adolfo Panizo Touzon
adolfo.pan...@gmail.com wrote:
 @Alain,

 I'm sorry for the misunderstanding. Now I think I solve my doubts. At the
 beginning I thought that each platform only can understand its UI Widgets.

 So, if I want native app, with their native UI Widgets  I must
 use  Gwt4Titanium. But I can use HTML5(JS/HTML/CSS) widgets to create the UI
 and then upload the app to the Market place, App store, etc...

 In my case my app will be very simple, so, it's interesting for me,  use
 the HTML5(JS/HTML/CSS) widgets to create the UI (and the app).

 So, basically both methods are valid for me.

 Now I'm going to take a look in which method are more easy, cheap and
 better.

 Again, suggestions and comments are welcome (@toEveryBody).

I would really check out m-gwt. It's nicely crafted and uses pure GWT
features only. Also check out their mailing list. It's a great and
helpful community.

Simply use mgwt, package your app using PhoneGap and submit it to the stores.


My 2 cent,


Best,


Raphael

-- 
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 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: Hibernate prematurely flushing within RequestFactoryServlet while building object

2012-02-13 Thread Eric Andresen
I guess tricky is a relative term.  My primary editor references 
SubObjectC using a LeafValueEditorSubObjectCProxy, and in this scenario 
my LeafValueEditor is changing to a different  SubObjectC instance that 
wasn't included in the original object. 

What I see in the server trace is that in the top-level object, it loads 
the original instance of subObjectC.  Later in the setProperty methods it 
loads the newly-selected subObjectC.  

My best guess is that since the new SubObjectC was not edited in the 
original context (it was added in later), that is why it isn't included in 
that list. It is understandable if the RF servlet doesn't scan through all 
the operations to find other objects when doing the initial object load.

If this is the expected behavior in this scenario I can accept that, since 
Jesse's suggested server-side change removed the negative side-effect I was 
seeing.  I was really just looking for clarification.

Thanks,
Eric

-- 
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/-/nOOeBLvFZ-EJ.
To 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.



is it necessary to use DataGrid.Resources for changing the datagrid look and feel

2012-02-13 Thread vaibhav jain
HI all,
  How can we change look and feel of data grid in gwt2.4.

I am using like:

dataGrid.addStyleName(tableWidget);

and in CSS i have defined :
.tableWidget {
 background: brown;
 color: black;
 font-weight: bold;
 font-size: 14px;

}
it changes the color of text as black and changing only the background of
header and footer,not the row background..and also if i change the even/odd
number of rows color to be chaned,how can i do this??


Regards,
VJ

-- 
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 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: Hibernate prematurely flushing within RequestFactoryServlet while building object

2012-02-13 Thread Thomas Broyer


On Monday, February 13, 2012 3:34:37 PM UTC+1, Eric Andresen wrote:

 I guess tricky is a relative term.  My primary editor references 
 SubObjectC using a LeafValueEditorSubObjectCProxy, and in this scenario 
 my LeafValueEditor is changing to a different  SubObjectC instance that 
 wasn't included in the original object.


So basically the equivalent of:
ctx.edit(primaryObject); // now, the original SubObjectC is edit()ed
primaryObject.setSubobjectc(newSubObjectC); // where newSubObjectC has 
*not* been edit()ed in this RequestContext
ctx.save(primaryObject).fire();

Nothing tricky indeed.

What I see in the server trace is that in the top-level object, it loads 
 the original instance of subObjectC.  Later in the setProperty methods it 
 loads the newly-selected subObjectC.  

 My best guess is that since the new SubObjectC was not edited in the 
 original context (it was added in later), that is why it isn't included in 
 that list. It is understandable if the RF servlet doesn't scan through all 
 the operations to find other objects when doing the initial object load.

 If this is the expected behavior in this scenario I can accept that, since 
 Jesse's suggested server-side change removed the negative side-effect I was 
 seeing.  I was really just looking for clarification.


If I'm right in the above simplification, could you file an issue? I 
think the newSubObjectC should be edit()ed when the setter is called. Or 
alternatively allow un-edited proxies (could reduce the request payload in 
some circumstances) but then make sure they're loaded before setters are 
called on the server-side.

-- 
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/-/7Je7AGQBqh0J.
To 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: Hibernate prematurely flushing within RequestFactoryServlet while building object

2012-02-13 Thread Eric Andresen
Yes, your simplification is correct.  I'm doing it inside the Editor with 
getValue/setValue, but I think the result should be the same.

I have logged the issue 
as http://code.google.com/p/google-web-toolkit/issues/detail?id=7189 .

-- 
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/-/z6IPeHv23QgJ.
To 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: GWT project not working in chrome

2012-02-13 Thread JC
Please provide the list of errors, so it should be easier give you an
answer.

JC

On Feb 11, 5:21 am, SathiyaRaj Subbu sathiyaraj.su...@gmail.com
wrote:
 Hi...

 I'm new to gwt. now i'm doing my final year project in java with gwt
 using eclipse and mysql db. My project is working in firefox fine but
 not working in chrome. While running project in chrome it giving list
 of errors. Plz can anyone help me.

 Thanks in advance

 Sathiya

-- 
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 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: GWT Cell Table support flex grid like layout

2012-02-13 Thread John99
http://code.google.com/p/google-web-toolkit/source/detail?r=10476 

-- 
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/-/xJPrOZX0cPUJ.
To 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: Custom TextBox

2012-02-13 Thread Ashwin Desikan
You can use IntergerBox or if using editor framework use 
ValueBoxEdiyorDecoratorInteger

I don't think you can display in the format u want using the above options. 

Have you tried using a regular textbox And converting your integer to a string 
in whatever format before displaying on screen?

~Ashwin

Sent from my iPhone

On Feb 14, 2012, at 12:14 AM, Fabricio Pizzichillo fpizzichi...@gmail.com 
wrote:

 Hello friends.
 I need to implement a TextBox that can be assigned an Integer and it shows in 
 this format 7732137/6
 
 Can you help?
 
 regards
 
 Fabricio
 -- 
 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 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.

-- 
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 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.



Don't put a symbolic link in your gwt project's output directory...

2012-02-13 Thread Stephen Buergler
Turns out if you make a symbolic link to another folder in GWT's output 
directory it will go into the symlink and delete everything there when you 
try to rebuild the project. I did this once a long time ago in an attempt 
to use this as an impromptu HTTP server. I still regret it.

-- 
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/-/DirlyAaW0m8J.
To 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: GWT Developer Plugin for Firefox not installing completely

2012-02-13 Thread Alan Leung
Hi Allyn:

Thanks for the report. It seems to be that the new
forward compatibility feature in the install-template.rdf is not
backward compatible (the irony) in FF3.6 and that version only.

I disabled the strict check that would fix it. Currently in review:
http://gwt-code-reviews.appspot.com/1642803/

As far as I understand that part is not necessary. It might be if binary
extensions become forward compatible by default (not likely anyways). At
that point I might have to break 3.6 and you might have to use a special
xpi for 3.6.

I'll try to file a bug to Mozilla people, I am not sure how willing they
are to going back to fix a bug in 3.6.

-Alan



On Fri, Feb 10, 2012 at 12:01 AM, Alan Leung acle...@google.com wrote:

 I am out of office at the moment and can't do much until Monday.

 You can download an older build from SVN to get around the problem:


 http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi?r=10837

 -Alan


 On Thu, Feb 9, 2012 at 11:22 AM, Allyn allyn.h...@gmail.com wrote:

 Up until yesterday I was using the GWT Developer Plugin for Firefox
 3.6 without issue. Then, suddenly, when I started up Firefox yesterday
 it did not recognize the plugin as being installed. In the add-on
 list, the plugin stated that I had to restart Firefox to complete the
 installation. I tried this, many times, to no avail. I even
 reinstalled Firefox and downloaded the plugin again. Still didn't
 work. I have no idea what would cause it to not only stop working
 suddenly and also not to work when I reinstall everything from
 scratch. I selected the option to remove all profile and plugin data
 when I tried the re-install.

 I'm not really sure what additional information to provide, so if
 you're reading this thinking I can't help there's too little
 information then please let me know what else I can provide.

 --
 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 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.




-- 
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 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: Custom TextBox

2012-02-13 Thread Fabricio Pizzichillo
Thanks for the reply.

Can I use NumberFormat for this? if so, how would the pattern?
regards

2012/2/13 Ashwin Desikan ashwin.desi...@gmail.com

 You can use IntergerBox or if using editor framework use
 ValueBoxEdiyorDecoratorInteger

 I don't think you can display in the format u want using the above
 options.

 Have you tried using a regular textbox And converting your integer to a
 string in whatever format before displaying on screen?

 ~Ashwin

 Sent from my iPhone

 On Feb 14, 2012, at 12:14 AM, Fabricio Pizzichillo fpizzichi...@gmail.com
 wrote:

 Hello friends.
 I need to implement a TextBox that can be assigned an Integer and it shows
 in this format 7732137/6

 Can you help?

 regards

 Fabricio

 --
 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 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.

  --
 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 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.


-- 
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 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: gwt

2012-02-13 Thread Thad
Look at the selectRow(int row) method in MailList.java of the Mail
sample. It's easy to follow and duplicate.

On Feb 13, 1:03 am, Amrutha Thomas amrutha.tho...@gmail.com wrote:
 I wish to deselect an already selected row and remove a selected row on a
 Flextable.

 For example, a user comes and selects a row, the selected row should
 highlight.If I select another row the row which I had selected before
 should deselect.Also i have  add and remove buttons to add and remove rows
 .Whenever I selects a row and click on remove button the selected row
 should remove from the table.Can anyone help me to solve this problem.

-- 
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 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.



The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be sent to the client

2012-02-13 Thread Victor Lujan
Feb 13, 2012 3:57:14 PM
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator die
SEVERE: The domain type com.dummyPackage.thriftgen.ClassOtherDTO
cannot be sent to the client


Hi everyone,

I have 3 DTOs and 3 proxies,  ClassOtherDTO, ClassSomethingDTO and
ClassAnotherDTO, each has it's own locator.

I have something like
classSomethingRequest.getSomething(100).with(getProperties()).fire(new
ReceiverListClassSomethingProxy() {
@Override
public void onSuccess(ListClassSomethingProxy
classSomethingList) {
  (...)
}

where getProperties is a String[] {property1, property2}


ClassSomethingProxy extends EntityProxy {
   ClassAnotherProxy getProperty1();
   ListClassOtherProxy getProperty2();
(...)
}



The requests brings me the information of ClassSomething and
ClassAnother but dies when I request information of ClassOther.  With
the following message:
The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be
sent to the client



I noticed that in class Builder , there is the following line:
 Builder builder = builderClass.newInstance();


Somewhere in the process the following class is automatically
generated:



// Automatically Generated -- DO NOT EDIT
// com.dummyPackage.gwt.shared.ClientRequestFactory
package com.dummyPackage.gwt.shared;
import java.util.Arrays;
import com.google.web.bindery.requestfactory.vm.impl.OperationData;
import com.google.web.bindery.requestfactory.vm.impl.OperationKey;
public final class ClientRequestFactoryDeobfuscatorBuilder extends
com.google.web.bindery.requestfactory.vm.impl.Deobfuscator.Builder {
{
withOperation(new OperationKey(dw_W77IdEET0DW0FaU5srH7Tp8s=),
  new OperationData.Builder()
  .withClientMethodDescriptor((Ljava/lang/String;)Lcom/google/web/
bindery/requestfactory/shared/Request;)
  .withDomainMethodDescriptor((Ljava/lang/String;)Lcom/dummyPackage/
thriftgen/ClassSomethingDTO;)
  .withMethodName(findSomething)
  .withRequestContext(com.dummyPackage.gwt.shared.ClientRequestFactory
$ClassSomethingRequest)
  .build());
withOperation(new OperationKey(zc3JZ1NYIC1KtsEQ2bX8VtGyAag=),
  new OperationData.Builder()
  .withClientMethodDescriptor((I)Lcom/google/web/bindery/
requestfactory/shared/Request;)
  .withDomainMethodDescriptor((I)Ljava/util/List;)
  .withMethodName(getSomething)
  .withRequestContext(com.dummyPackage.gwt.shared.ClientRequestFactory
$ClassSomethingRequest)
  .build());
withRawTypeToken(w1Qg$YHpDaNcHrR5HZ$23y518nA=,
com.google.web.bindery.requestfactory.shared.EntityProxy);
withRawTypeToken(FXHD5YU0TiUl3uBaepdkYaowx9k=,
com.google.web.bindery.requestfactory.shared.BaseProxy);
withRawTypeToken(2V15tuS$Yny$aeAf45pmDIE2bFk=,
com.dummyPackage.gwt.shared.ClassAnotherProxy);
withRawTypeToken(4EHxlUwpVRbxMNh_BZBl5aVN0uY=,
com.dummyPackage.gwt.shared.ClassSomethingProxy);
withClientToDomainMappings(com.dummyPackage.thriftgen.ClassAnotherDTO,
Arrays.asList(com.dummyPackage.gwt.shared.ClassAnotherProxy));
withClientToDomainMappings(com.theworkingcrowd.thriftgen.ClassSomethingDTO,
Arrays.asList(com.dummyPackage.gwt.shared.ClassSomethingProxy));
}}



And there is nothing about ClassOtherDTO or ClassOtherProxy.   How can
I see what's going on?

If I dont request for property2 everything goes right (ClassAnother
and ClassSomething work alright)  but when i include property2 in the
request it tells me that it cannot be sent to the client.

All ClassAnother, ClassSomething and ClassOther (the problematic)
were automatically generated by thrift and if you see the code they
are very similar.
Could it be that the problem exist in that getProperty2 expects a list
of DTOs and not just one?

Thank you

-- 
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 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: The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be sent to the client

2012-02-13 Thread Victor Lujan
ps.  I have been debugging this for a day and i have ran out of ideas. this 
is that stack trace


SEVERE: The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be 
sent to the client
Feb 13, 2012 3:57:14 PM 
com.google.web.bindery.requestfactory.server.RequestFactoryServlet doPost
SEVERE: Unexpected error
com.google.web.bindery.requestfactory.server.UnexpectedException: The 
domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be sent to the 
client
at 
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.die(ServiceLayerDecorator.java:216)
at 
com.google.web.bindery.requestfactory.server.ResolverServiceLayer.resolveClientType(ResolverServiceLayer.java:91)
at 
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.resolveClientType(ServiceLayerDecorator.java:142)
at 
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.resolveClientType(ServiceLayerDecorator.java:142)
at 
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.resolveClientType(ServiceLayerDecorator.java:142)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at 
com.google.web.bindery.requestfactory.server.ServiceLayerCache.getOrCache(ServiceLayerCache.java:233)
at 
com.google.web.bindery.requestfactory.server.ServiceLayerCache.resolveClientType(ServiceLayerCache.java:163)
at 
com.google.web.bindery.requestfactory.server.Resolver.resolveClientValue(Resolver.java:586)
at 
com.google.web.bindery.requestfactory.server.Resolver.resolveClientValue(Resolver.java:618)
at 
com.google.web.bindery.requestfactory.server.Resolver.access$400(Resolver.java:50)
at 
com.google.web.bindery.requestfactory.server.Resolver$PropertyResolver.visitReferenceProperty(Resolver.java:139)
at 
com.google.web.bindery.autobean.shared.AutoBeanVisitor.visitCollectionProperty(AutoBeanVisitor.java:229)
at 
com.google.web.bindery.autobean.vm.impl.ProxyAutoBean.traverseProperties(ProxyAutoBean.java:300)
at 
com.google.web.bindery.autobean.shared.impl.AbstractAutoBean.traverse(AbstractAutoBean.java:166)
at 
com.google.web.bindery.autobean.shared.impl.AbstractAutoBean.accept(AbstractAutoBean.java:101)
at 
com.google.web.bindery.requestfactory.server.Resolver.resolveClientValue(Resolver.java:395)


-- 
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/-/DHCSA9W0_ysJ.
To 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: The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be sent to the client

2012-02-13 Thread Victor Lujan
Forgot to say that class Builder is not a class I made, its:
com.google.web.bindery.requestfactory.vm.impl.Deobfuscator.Builder

Here is the code.  This is where I get the first symptom  that something 
odd happened , given that in that new Instance() is where I think the 
automatically generated code (the one of my first post) gets created (I 
could be wrong here though)  and  it doesnt include anything about 
ClassOtherDTO or ClassOtherProxy  : (

public class Deobfuscator {

//...

public static class Builder {
public static Builder load(Class? clazz, ClassLoader 
resolveClassesWith) {
Throwable ex;
try {
Class? found;
try {
// Used by the server
found = Class.forName(clazz.getName() + GENERATED_SUFFIX, 
false, resolveClassesWith);
} catch (ClassNotFoundException ignored) {
// Used by JRE-only clients
found = Class.forName(clazz.getName() + 
GENERATED_SUFFIX_LITE, false, resolveClassesWith);
}
Class? extends Builder builderClass = 
found.asSubclass(Builder.class);
Builder builder = builderClass.newInstance();
return builder;
} catch (ClassNotFoundException e) {
throw new RuntimeException(The RequestFactory ValidationTool 
must be run for the 
+ clazz.getCanonicalName() +  RequestFactory type);
} catch (InstantiationException e) {
ex = e;
} catch (IllegalAccessException e) {
ex = e;
}
throw new RuntimeException(ex);
}

-- 
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/-/HDDuUdVds8gJ.
To 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: The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be sent to the client

2012-02-13 Thread Victor Lujan
Actually,  instead of 

ClassSomethingProxy extends EntityProxy { 
   ClassAnotherProxy getProperty1(); 
   ListClassOtherProxy getProperty2(); 
(...) 
} 


I changed it to


ClassSomethingProxy extends EntityProxy { 
   ClassAnotherProxy getProperty1(); 
   ClassOtherProxy getProperty2(); 
(...) 
} 

ps. i changed the definition of the thrift file  to not have a list of 
ClassOtherDTOs and also changed the proxy  , locator, etc.

And it all works just fine !   

What's the deal with using a proxy with a list of proxies?  is this a well 
known problem? do you need me to give you more info? do you want me to dig 
deeper?
it would help me A LOT if there is a work around for this problem.


Thanks.

-- 
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/-/RFTh7TGYD_QJ.
To 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: gwt

2012-02-13 Thread Amrutha Thomas
thankyou Thad

-- 
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 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.



ensureDebugId(String) creating new object in my browser

2012-02-13 Thread Jeffrey Fagerberg
Hello Everyone,

I am trying to use ensureDebugId(String) in my smartGWT/GWT project so
that i can test with QTP.  However when I use this method on my web
objects it creates a new object above the one i am trying to set the
ids for and shifts everything on the page down.  When i use QTPs
object spy on the new space objects i see the ID i was trying to set
for the objects that got shifted down.  those objects still do not
have the ids set.

Has anyone else ever experienced ensureDebugId(String) leading to new
objects being created instead of IDs being set?

I have tried calling this method at different levels and am still
getting the same result.

Thank you,
-Jeff

-- 
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 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.



Having issue with Uploader functionality.

2012-02-13 Thread Jit
I am using GwtUpload.jar 6.4 to achieve the File Uploading capability.
When IE 8 is used and user enters a file name without  path, it shows
javascript error. I tried it in debug mode in  development and  found
that it is  showing me a  c:\fakefolder\filename. Any solution to
resolve this issue ?

-- 
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 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.



chrome vs firefox: on mouse leave/enter event

2012-02-13 Thread Gustaf Nilsson
Hi

I am a member of the Pyjamas community (a python port of GWT). Today I
ran into a problem caused by how firefox and chrome triggers these
events, and I would like to see if anyone could confirm if this
problem exists on GWT, or if it is a problem in the python port.

The problem can be described like this:

say i have a panel A with a second smaller panel B inside.
Both have mousehandlers.

Say my mouse pointer is already inside A, but not B and then I move
the pointer into B and then back out.

In firefox:
*when i move cursor into B: B triggers onMouseEnter twice.
*when i move cursor off B: B triggers onMouseLeave once, A triggers
onMouseEnter twice

chrome:
*when i move cursor into B: B triggers onMouseEnter once.
*when i move cursor off B: B triggers onMouseLeave once.


Please it would be great if someone could try this in GWT and let us
know the results.

Thanks
Gustaf

-- 
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 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: The domain type com.dummyPackage.thriftgen.ClassOtherDTO cannot be sent to the client

2012-02-13 Thread Vasi Sándor
I dont know the reason, but if i remember well, i got similar error, when i 
have changed the server side code and did not launch mvn clean install after. 
It made the development process really slow, but it forced me to write server 
side unit tests.

Sandor

On 2012.02.14., at 2:43, Victor Lujan victor...@gmail.com wrote:

 Actually,  instead of 
 
 ClassSomethingProxy extends EntityProxy { 
ClassAnotherProxy getProperty1(); 
ListClassOtherProxy getProperty2(); 
 (...) 
 } 
 
 
 I changed it to
 
 
 ClassSomethingProxy extends EntityProxy { 
ClassAnotherProxy getProperty1(); 
ClassOtherProxy getProperty2(); 
 (...) 
 } 
 
 ps. i changed the definition of the thrift file  to not have a list of 
 ClassOtherDTOs and also changed the proxy  , locator, etc.
 
 And it all works just fine !   
 
 What's the deal with using a proxy with a list of proxies?  is this a well 
 known problem? do you need me to give you more info? do you want me to dig 
 deeper?
 it would help me A LOT if there is a work around for this problem.
 
 
 Thanks.
 -- 
 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/-/RFTh7TGYD_QJ.
 To 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.

-- 
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 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.



[gwt-contrib] Code splitter ready for testing?

2012-02-13 Thread dflorey
Hi,
I had severe problems with the old code splitter (see 
https://groups.google.com/forum/?fromgroups#!searchin/google-web-toolkit-contributors/florey/google-web-toolkit-contributors/vRhQtI8xWU0/Pihj-cYSDZgJ
 )
All code splitting is right now disabled due to the issue.
Is the new code splitter already ready for testing? If yes, is there any 
config needed or docs about how to get it up and running?

Daniel

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Code splitter ready for testing?

2012-02-13 Thread Stephen Haberman

 I had severe problems with the old code splitter 

This is a shot in the dark, but I fixed in bug in the current code
splitter that affected class literals across fragments:

http://gwt-code-reviews.appspot.com/1513803/

It hasn't been applied yet, but it might be worth applying to trunk and
seeing if it fixes your issue. (...hm, just read that your issue is
only for marker interfaces? Not as sure it's the same bug then, but
I think still worth trying.)

FWIW I very briefly glanced at CodeSplitter2 and (at the time) it used
the same chunk of code that I was messing with in CodeSplitter1, so it
might be susceptible to the same bug.

- Stephen

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Fix Firefox 3.6 devmode plugin infinite install loop. (issue1642803)

2012-02-13 Thread acleung

Reviewers: conroy,

Description:
Fix Firefox 3.6 devmode plugin infinite install loop.


Please review this at http://gwt-code-reviews.appspot.com/1642803/

Affected files:
  M plugins/xpcom/install-template.rdf


Index: plugins/xpcom/install-template.rdf
===
--- plugins/xpcom/install-template.rdf  (revision 10862)
+++ plugins/xpcom/install-template.rdf  (working copy)
@@ -14,7 +14,11 @@
 em:minVersion3.0/em:minVersion
 em:maxVersion10.0.*/em:maxVersion
   /Description
+
+!-- TODO: This seems to break Firefox 3.6
 em:strictCompatibilitytrue/em:strictCompatibility
+--
+
 /em:targetApplication

 !-- Front End MetaData --


--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Fix Firefox 3.6 devmode plugin infinite install loop. (issue1642803)

2012-02-13 Thread conroy

FYI

can you provide some more context on the problem and why this fixes it?

Note taht FF has poor handling of switching down between incompatible
versions in the same install location. So, if you point 3.6 at a user
directory that had 7 installed, it will ask you to reinstall all your
plugins--even the backwards compatible ones. But, if you just have a
naked 3.6 install and then upgrade, you're fine.

http://gwt-code-reviews.appspot.com/1642803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Fix Firefox 3.6 devmode plugin infinite install loop. (issue1642803)

2012-02-13 Thread acleung

On 2012/02/13 21:21:54, conroy wrote:

FYI



can you provide some more context on the problem and why this fixes

it?


Note taht FF has poor handling of switching down between incompatible

versions

in the same install location. So, if you point 3.6 at a user directory

that had

7 installed, it will ask you to reinstall all your plugins--even the

backwards

compatible ones. But, if you just have a naked 3.6 install and then

upgrade,

you're fine.



I am actually not really sure myself. I added what I know in the comment
which basically came from trail-and-error.

I am going to try opening an issue with them and see what they said. I
saw a few related issue about infinite restarts that was fixed in later
version of add-on manager.

I did all my tests on clean profiles (wiping ~/.mozilla)

-Alan

http://gwt-code-reviews.appspot.com/1642803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Fix Firefox 3.6 devmode plugin infinite install loop. (issue1642803)

2012-02-13 Thread conroy

On 2012/02/13 22:24:15, acleung wrote:

On 2012/02/13 21:21:54, conroy wrote:
 FYI

 can you provide some more context on the problem and why this fixes

it?


 Note taht FF has poor handling of switching down between

incompatible versions

 in the same install location. So, if you point 3.6 at a user

directory that

had
 7 installed, it will ask you to reinstall all your plugins--even the

backwards

 compatible ones. But, if you just have a naked 3.6 install and then

upgrade,

 you're fine.




I am actually not really sure myself. I added what I know in the

comment which

basically came from trail-and-error.



I am going to try opening an issue with them and see what they said. I

saw a few

related issue about infinite restarts that was fixed in later version

of add-on

manager.



I did all my tests on clean profiles (wiping ~/.mozilla)



-Alan


FYI

I'm confused why this is a problem for 3.6 *now* though. We aren't
changing the 3.6 binaries, and the spec for the manifest in the XPI
changed long ago. Is this just an issue from that switchover that we are
just now aware of?

http://gwt-code-reviews.appspot.com/1642803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Fix Firefox 3.6 devmode plugin infinite install loop. (issue1642803)

2012-02-13 Thread acleung

On 2012/02/13 22:41:01, conroy wrote:

On 2012/02/13 22:24:15, acleung wrote:
 On 2012/02/13 21:21:54, conroy wrote:
  FYI
 
  can you provide some more context on the problem and why this

fixes it?

 
  Note taht FF has poor handling of switching down between

incompatible

versions
  in the same install location. So, if you point 3.6 at a user

directory that

 had
  7 installed, it will ask you to reinstall all your plugins--even

the

backwards
  compatible ones. But, if you just have a naked 3.6 install and

then upgrade,

  you're fine.


 I am actually not really sure myself. I added what I know in the

comment which

 basically came from trail-and-error.

 I am going to try opening an issue with them and see what they said.

I saw a

few
 related issue about infinite restarts that was fixed in later

version of

add-on
 manager.

 I did all my tests on clean profiles (wiping ~/.mozilla)

 -Alan



FYI



I'm confused why this is a problem for 3.6 *now* though. We aren't

changing the

3.6 binaries, and the spec for the manifest in the XPI changed long

ago. Is this

just an issue from that switchover that we are just now aware of?



That's correct, we didn't change the binary. However, the validator
still checks the new install.rdf and probably thinks strictCompatibility
is an invalid property.

I see a few similar bugs:
https://bugzilla.mozilla.org/show_bug.cgi?id=720175


http://gwt-code-reviews.appspot.com/1642803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Fix Firefox 3.6 devmode plugin infinite install loop. (issue1642803)

2012-02-13 Thread Chris Conroy
LGTM

On Mon, Feb 13, 2012 at 5:55 PM, acle...@google.com wrote:

 On 2012/02/13 22:41:01, conroy wrote:

 On 2012/02/13 22:24:15, acleung wrote:
  On 2012/02/13 21:21:54, conroy wrote:
   FYI
  
   can you provide some more context on the problem and why this

 fixes it?

  
   Note taht FF has poor handling of switching down between

 incompatible

 versions
   in the same install location. So, if you point 3.6 at a user

 directory that

  had
   7 installed, it will ask you to reinstall all your plugins--even

 the

 backwards
   compatible ones. But, if you just have a naked 3.6 install and

 then upgrade,

   you're fine.
 
 
  I am actually not really sure myself. I added what I know in the

 comment which

  basically came from trail-and-error.
 
  I am going to try opening an issue with them and see what they said.

 I saw a

 few
  related issue about infinite restarts that was fixed in later

 version of

 add-on
  manager.
 
  I did all my tests on clean profiles (wiping ~/.mozilla)
 
  -Alan


  FYI


  I'm confused why this is a problem for 3.6 *now* though. We aren't

 changing the

 3.6 binaries, and the spec for the manifest in the XPI changed long

 ago. Is this

 just an issue from that switchover that we are just now aware of?



 That's correct, we didn't change the binary. However, the validator
 still checks the new install.rdf and probably thinks strictCompatibility
 is an invalid property.

 I see a few similar bugs:
 https://bugzilla.mozilla.org/**show_bug.cgi?id=720175https://bugzilla.mozilla.org/show_bug.cgi?id=720175


 http://gwt-code-reviews.**appspot.com/1642803/http://gwt-code-reviews.appspot.com/1642803/


-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Errors running unit tests.

2012-02-13 Thread Bradley Gottfried
Any update on this? I'm getting the same errors.
-bradley

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors