Re: Playing video with Gwt

2012-03-19 Thread Frank
Such a wrapper is allready part of GWT for a pretty long time :  
http://google-web-toolkit.googlecode.com/svn/javadoc/latest/index.html?overview-summary.html

Or a pretty popular 3rd party wrapper :  
http://code.google.com/p/gwt-html5-video/ 

But for HTML5 you will still need to encode your videos. You cannot just 
play any avi, mpg, mpeg video using HTML5.

The only other option besides BST that I know of is the VLC plugin (
http://wiki.videolan.org/GWT). But this is allready a part of BST. BST 
should work to play almost any video you can find. You did install the 
needed plugins for your browser (like the VLC plugin ?).



Op vrijdag 16 maart 2012 14:52:35 UTC+1 schreef dodo dard het volgende:

 You can create a wrapper that call javascript API of HTML5 Video.
 Look how you can do it in www.html5bydemo.com video section.

 Le vendredi 16 mars 2012 10:39:41 UTC+1, Ahmet Dakoglu a écrit :

 Anyone can give a suggestion on how to play video files within  Gwt 
 beside Flash ?, So far i ' ve tried bst player and 
 http://code.google.com/p/gwt-html5-video/

 On Thu, Mar 15, 2012 at 9:12 PM, Sebastian Gurin sgu...@softpoint.orgwrote:

 tipically flash based video players will only support the flv and mp3 
 (audio) formats, regards

 On Thu, 15 Mar 2012 18:40:00 +0200
 Ahmet Dakoglu ahmetdako...@gmail.com wrote:

  Hi All,
 
 I am trying to play video files and i decided to use bst player, it 
 is
  ok with YouTubePlayer with given url but i can not play such as, .avi ,
  .mpeg ,mpg files which are on my local drive. I serve them in a 
 servlet to
  VLCPlayer and FlashMediaPlayer of bst player but it does not work too.
 
  What am missing here and what can else be used for playing video files 
 in
  gwt ?
 
 
  --
  *Ahmet DAKOĞLU*
 
  --
  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.
 


 --
 Sebastian Gurin sgu...@softpoint.org

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




 -- 
 *Ahmet DAKOĞLU*



-- 
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/-/SoiTYz8zOGkJ.
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. commons.lang.StringUtils

2012-03-19 Thread Thomas
Blagoja Chavkoski baze985@... writes:

 
 
 Hi,You cant use any java.jar file in gwt without having the source code 
included in the jar and having the gwt.xml file pointing to the source 
classes...why u need this?! because gwt compiler needs to compile this classes
 to js! gwt by default compiles all classes in client and all classes in 
 shared 
to js, and bacause u have a import for commons gwt try's to compile this import 
also!!! but there is no source code and no gwt.xml file in the jarIf you dont 
understand what im saying:) open one of the normal .jar lib files used in gwt 
and youll see that inside u have all I wrote before! (source classes and 
gwt.xml)Important!!If having a lib that inside uses other lib..than u need the 
same thing for this imported lib:)...so basic dont use in client and shared any 
java lib other then the
 normal java lang libs(the compiler have the source for them by default)...to 
see what im talking...try to add insted of ArrayList... 
ConcurentArrayList...ull 
get the same problem..because the compiler dosent recognize this libs 
also:))regards blaze,Hope i was of help...
 On Sun, Jul 25, 2010 at 10:46 PM, Feldman, Nir (48Upper) nir.feldman-
vxdhtt5m...@public.gmane.org wrote:It is not really possible since StringUtils 
is based on java regular expression and the GWT regular expression emulator is 
based on a javascript. You will need to write it by your own
 -Original Message-
 From: google-web-toolkit@googlegroups.com 
[mailto:google-web-toolkit@googlegroups.com] On Behalf Of 
Arar
 
 Sent: Friday, July 23, 2010 2:24 AM
 To: Google Web Toolkit
 Subject: GWT. commons.lang.StringUtils
 Hi,
 I am trying to search between two Strings using the
 StringUtils.substringBetween() in my project. I have imported
 org.apache.commons.lang.StringUtils;  in my Entry Point java file . I
 have included common-lang.jar in my lib directory and in my project
 path. I have also modifed my gwt.xml
  inherits name=com.googlecode.gwt.commons.long.Long/. I dont know
 if this is right or wrong.
 The Java Compilation goes through without any Errors . but if i do a
 GWT compile i get the following error
 [ERROR] Line 190: No source code is available for type
 org.apache.commons.lang.StringUtils; did you forget to inherit a
 required module?
 lib/gwtx-1.5.2.jar!/com/googlecode/gwtx/java/util/emul/java/util/regex/
 Pattern.java'
          [WARN] Line 140: Referencing class
 'com.googlecode.gwtx.java.util.emul.java.util.regex.Pattern': unable
 to resolve class, expect subsequent failures
          [WARN] Line 149: Referencing class
 'com.googlecode.gwtx.java.util.emul.java.util.regex.Pattern': unable
 to resolve class, expect subsequent failures
          [WARN] Line 183: Referencing class
 'com.googlecode.gwtx.java.util.emul.java.util.regex.Pattern': unable
 to resolve class, expect subsequent failures
 I want to know if its possible to includes
 org.apache.commons.lang.StringUtils in GWT  and how can i do the
 inherits in my GWT.XML file or i am digging in the wrong way.
 Please HELP.
 Any help would be appreciated. Thank you very much.
 --
 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-
/jypxa39uh5tlh3mboc...@public.gmane.org.
 To unsubscribe from this group, send email to google-web-toolkit+unsubscribe 
at 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-
/jypxa39uh5tlh3mboc...@public.gmane.org.
 To unsubscribe from this group, send email to google-web-toolkit+unsubscribe 
at googlegroups.com.
 For more options, visit this group at http://groups.google.com/group/google-
web-toolkit?hl=en.
 
 
 
 


Hi Blagoja,

What if the class is in 'server'?

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-
plugin:2.3.2:compile (default-compile) on project xyz: Compilation failure: 
Compilation failure:
[ERROR] \eclipse-3.7\workspace\xyz\src\com\x\y\z\server\UserServiceImpl.java:
[20,30] package org.apache.commons.lang does not exist
[ERROR] \eclipse-3.7\workspace\xyz\src\com\x\y\z\server\UserServiceImpl.java:
[248,75] cannot find symbol
[ERROR] symbol  : variable StringUtils
[ERROR] location: class com.rbs.samuraiweb.server.UserServiceImpl
[ERROR] - [Help 1]

It works if I add lang3 dependency in the pom file and use lang3 instead of 
lang, but that's not what I want to do...
Any way to get org.apache.commons.lang.StringUtils working?

Regards,

Thomas

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

Re: GWT Dev plug-in for Firefox 11

2012-03-19 Thread Kahro
Hi

This is a thank you post. I also accidentally updated to FF11 on my
Ubuntu 11.10 x64 and the plug-in seems to work fine.

-- 
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: rpc call

2012-03-19 Thread dodo dard
No I think there is no method that can do that, the RPC is asynchronous. 
You should create a callback and retrieveData in the callback instead.

Bowie
=
www.html5bydemo.com 

Le lundi 19 mars 2012 04:22:52 UTC+1, tong123123 a écrit :

 as gwt has no java pattern class and so I want to use server validation, 
 at first, my code is 
 if (!validate()_{

 }else{
   retrieveData();
 }

 the validate() method is only client side validation first, but now I need 
 add rpc server validation test, so I think if the server validation rpc 
 call is non-blocking, then maybe 
 there is server validation error, but the client side code already run to 
 the else part and run retrieveDate(), any method to ensure the validate() 
 method is completed before retrieveData() is called?


-- 
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/-/a9Xh7NFlwxoJ.
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 import com.google.gwt.user cannot be resolved

2012-03-19 Thread pop.ionut84
You can use GWT Designer for building your application. After setting
it up you will not have any problems like you have now :).

On Mar 17, 7:41 pm, oogie cmadu...@gmail.com wrote:
 I am going through the GWT Tutorials, specifically the Making Remote
 Procedure Calls tutorial, and I have created an interface with the
 following provided code:

 package com.google.gwt.sample.stockwatcher.client;

 import com.google.gwt.user.client.rpc.RemoteService;
 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;

 @RemoteServiceRelativePath(stockPrices)
 public interface StockPriceService extends RemoteService {

   StockPrice[] getPrices(String[] symbols);

 }

 I am getting the following errors:
 The import com.google.gwt.user cannot be resolved
 RemoteServiceRelativePath cannot be resolved to a type
 RemoteService cannot be resolved to a type

 I am using GWT 2.4.0, which I understand does not align with the
 tutorial, but unfortunately I cannot think of how I should update the
 provided code in the tutorial to 2.4.  How can I fix the above code to
 eliminate these errors?  Thanks in advance for any help.

-- 
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 , getting data List from database problem

2012-03-19 Thread nofear
Thanks , i fixed the problem , basicly , the problem was on the domain
class SinavTakvim , because sinavtakvimId is type varchar(10) on the
database  but in this class , i typed integer for it. I've fixed the
lines and it works perfectly now.


Best Regards.

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



Resolving state provided by place in a central class

2012-03-19 Thread tanteanni
in my application most activities rely on infos provided by current place. 
all infos of such place define the state of activity. the problem is that 
all infos are provided as strings and must be resolved to objects (i.e. 
userID=0815 must be resolved to a user object). In my case many activities 
share such a state (ShowUserActivity, SelectUserActivity both need 
current(Selected)User). At the moment the code to resolve a state is 
redundant across those activities -- very bad.

So i want to centralize each kind of state. In many cases async. services 
are needed to resolve the infos. So how is a good way to centralize this 
asynchronous process? One Idea i have in mind is to let this class hear 
PlaceChangeEvents to update itself. Because of the asynchronous nature of 
the update i probably need a UpdateStateEvent and each activity must 
register to it.

But is there a way to defer the loading of an activity 'til state is 
resolved (there is no need to start the activity). Or in general is there a 
way to make asynchronous calls synchronous by deferring until 
onSuccess/onFailure? 
Or this all is probably bullshit and you have a better idea to solve this 
kind of problem? 

-- 
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/-/go98sXST0zoJ.
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 Dev plug-in for Firefox 11

2012-03-19 Thread Juan Pablo Gardella
For windows?

El 19 de marzo de 2012 04:27, Kahro kahro.r...@gmail.com escribió:

 Hi

 This is a thank you post. I also accidentally updated to FF11 on my
 Ubuntu 11.10 x64 and the plug-in seems to work fine.

 --
 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: HTML Code Generation

2012-03-19 Thread HK
Thank you for your response!
I tried this and now I can call toString(). But how can I call basic
JAVA Methods? For example how can I write the generated HTML Code to a
File? Using java.io.File I get an error when executing the GWT JUnit
Test:
[ERROR] Line 41: No source code is available for type java.io.File;
did you forget to inherit a required module?
This error appears for every JRE class I try to use.

-- 
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 + MySql

2012-03-19 Thread vijay Rana Bhat
if anyone have a demo program to connect the database from gwt please
mail me

thank u..

-- 
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 + MySql

2012-03-19 Thread Lothar Kimmeringer
Am 19.03.2012 14:42, schrieb vijay Rana Bhat:
 if anyone have a demo program to connect the database from gwt please
 mail me

since the db-connection needs to happen on the server-side of your
GWT-application, you can use every jdbc-example being done with
MySQL out there as reference.


Regards, Lothar

-- 
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: HTML Code Generation

2012-03-19 Thread JoseM
Those tests run as if they were really running on a web browser (because 
they are). You would need to send it back to the server using RPC or RF 
or whatever else you want.

On Monday, March 19, 2012 9:35:18 AM UTC-4, HK wrote:

 Thank you for your response! 
 I tried this and now I can call toString(). But how can I call basic 
 JAVA Methods? For example how can I write the generated HTML Code to a 
 File? Using java.io.File I get an error when executing the GWT JUnit 
 Test: 
 [ERROR] Line 41: No source code is available for type java.io.File; 
 did you forget to inherit a required module? 
 This error appears for every JRE class I try to use. 



-- 
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/-/Ab6yNA6eyy4J.
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 Dev plug-in for Firefox 11

2012-03-19 Thread Igor Lysak
Hello Alan. Could you please build plugin for Windows?

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



finish the RPC call befor the execution of other methods or code?

2012-03-19 Thread learning coding
HI all

I am doing web application Project in GWT. I am using RPC, which is working
fine.

I have 4 packeages

   1. .client
   2. .client.GUI
   3. .client.control
   4. .shared
   5. .server

From .gui.loginpage

On onClickmethod of a button I make a object of Login Class which is in
client.control

onSuccess of RPC public Boolean setConnection(true)

but when i try to getConnectionform .gui.loginpage its show me null.

because the call back function is executed asynchronously, the function is
invoked after the response comes to the browser from the server.

But the other part of the code is executed immediately by which time
connection is still null.
*I need a solution or a method or any logic so that other function waits
till the rpc call is complete.*
**
*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: finish the RPC call befor the execution of other methods or code?

2012-03-19 Thread Jens
You have to convert your code to use a callback:

Instead of:

void onClick() {
  myObject.doSomethingAsync(xyz);
  myObject.getConnection();
  //additional code
}

convert it to:

void onClick() {
  myObject.doSomethingAsync(xyz, new Callback() {
void onSuccess() {
  myObject.getConnection();
  //additional code
}
  });
}

void doSomethingAsync(Object o, Callback cb) {
  serverService.rpcMethod(o, new AsyncCallbackObject {
void onSuccess(Object result) {
  setConnection(true);
  cb.onSuccess(); //notify caller via its callback
}
  }
}

Alternatively you can use two events (one event results in execution of the 
async method and the second one will be fired when the async request has 
been finished).


-- J.



Am Montag, 19. März 2012 16:30:58 UTC+1 schrieb learning coding:

 HI all
  
 I am doing web application Project in GWT. I am using RPC, which is 
 working fine.

 I have 4 packeages 

1. .client 
2. .client.GUI 
3. .client.control 
4. .shared 
5. .server

 From .gui.loginpage

 On onClickmethod of a button I make a object of Login Class which is in 
 client.control

 onSuccess of RPC public Boolean setConnection(true)

 but when i try to getConnectionform .gui.loginpage its show me null.

 because the call back function is executed asynchronously, the function is 
 invoked after the response comes to the browser from the server. 

 But the other part of the code is executed immediately by which time 
 connection is still null.
 *I need a solution or a method or any logic so that other function waits 
 till the rpc call is complete.*
 ** 
 *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/-/JF6fL4gXVSUJ.
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: finish the RPC call befor the execution of other methods or code?

2012-03-19 Thread learning coding
Ya i did that before but somebody told me that this is not good way coding.
As I am new to coding i dont understand the complexity iissues much during
coding.

here is my piece of code.
* .client.GUI*
*public Class GUi(){**
 // More Code**

public void onClick(ClickEvent event) {**

LoginServer loginServer =new  LoginServer(getTextBoxUsername().getText(),
getTextBoxPassword().getText());**
loginServer.setConnection(connection);**
connection=loginServer.getConnection();**
// More code**
} *
*}*
**
*client.control*
**
*public class LoginServer {**
// more code**
public void setConnection(Boolean connection) {**

String[] authentication = {username,password};**
//RPC call**
connectionService.connectionServer(authentication, callbackConnection);*
*
*
* System.out.println(setConnection + connection);**
}**

public Boolean getConnection() {**
return connection;**
}**
AsyncCallback callbackConnection = new AsyncCallback() {**

public void onFailure(Throwable caught) {**
// TODO Auto-generated method stub**
connection=false;**
}**

public void onSuccess(Object result) {**
connection=true;**
System.out.println(onSuccess + connection);**

}**
};**

}** *

**
*help me to solve this.*
**
*thanks

*









On Mon, Mar 19, 2012 at 5:00 PM, Jens jens.nehlme...@gmail.com wrote:

 You have to convert your code to use a callback:

 Instead of:

 void onClick() {
   myObject.doSomethingAsync(xyz);
   myObject.getConnection();
   //additional code
 }

 convert it to:

  void onClick() {
   myObject.doSomethingAsync(xyz, new Callback() {
 void onSuccess() {
   myObject.getConnection();
   //additional code
 }
   });
 }

 void doSomethingAsync(Object o, Callback cb) {
   serverService.rpcMethod(o, new AsyncCallbackObject {
 void onSuccess(Object result) {
   setConnection(true);
   cb.onSuccess(); //notify caller via its callback
 }
   }
 }

 Alternatively you can use two events (one event results in execution of
 the async method and the second one will be fired when the async request
 has been finished).


 -- J.



 Am Montag, 19. März 2012 16:30:58 UTC+1 schrieb learning coding:

 HI all

 I am doing web application Project in GWT. I am using RPC, which is
 working fine.

 I have 4 packeages

1. .client
2. .client.GUI
3. .client.control
4. .shared
5. .server

 From .gui.loginpage

 On onClickmethod of a button I make a object of Login Class which is in
 client.control

 onSuccess of RPC public Boolean setConnection(true)

 but when i try to getConnectionform .gui.loginpage its show me null.

 because the call back function is executed asynchronously, the function
 is invoked after the response comes to the browser from the server.

 But the other part of the code is executed immediately by which time
 connection is still null.
 *I need a solution or a method or any logic so that other function waits
 till the rpc call is complete.*
 **
 *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/-/JF6fL4gXVSUJ.
 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: ff11 gwt dev plugin

2012-03-19 Thread Knubo


On Monday, March 19, 2012 12:58:08 AM UTC+1, Alan Leung wrote:



 I installed it, but it tells med that it is not compatible with FF11.


 Can you tell me which .xpi and what OS you are using? 


I'm running mac os X 10.7.3, build 11D50b on a 2.66 GhHz Quad-Core Intel 
Xeon. I used the link from above.
 
Knubo

-- 
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/-/Iwontie1dBUJ.
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: ff11 gwt dev plugin

2012-03-19 Thread Knubo
On Monday, March 19, 2012 5:51:51 PM UTC+1, Knubo wrote:


 I'm running mac os X 10.7.3, build 11D50b on a 2.66 GhHz Quad-Core Intel 
 Xeon. I used the link from above.


In Firefox 11 the plugin reports itself as:

Google Web Toolkit Developer Plugin TMP for Firefox. Updated 19 march.

Knubo 

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



CellTable vs DataGrid

2012-03-19 Thread Alexander Orlov
*CellTable vs DataGrid* — when to use which? DataGrid is for large data 
sets and CellTable for (kind of) smaller data sets. But is there a *reason 
not to use* the DataGrid Composite for all kinds of data sets? What would 
be the disadvantage, besides an (non-user-perceivable) init delay?

   - http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid
   - http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable

-- 
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/-/WlMeGCL0Rh4J.
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: ff11 gwt dev plugin

2012-03-19 Thread Thad
This works for me with 32-bit openSUSE 11.4. Thank you!

On Saturday, March 17, 2012 6:06:39 AM UTC-4, Alan Leung wrote:

 Correct link:

 http://acleung.com/gwt-dev-plugin.xpi

 Again FF11 linux only.


 On Sat, Mar 17, 2012 at 3:05 AM, Alan Leung acle...@google.com wrote:

 I've build it for linux 32 and 64bit for now and dropped it here: 
 http://acleung.com/gwt-dev-plugin.gwt

 -Alan


 On Fri, Mar 16, 2012 at 9:04 AM, Eike Thies thies.e...@gmail.com wrote:

 to sad that i think you have a point here :( arghhh... where is my 
 firefox portable just to test my gwt application :P

 Am Freitag, 16. März 2012 15:08:13 UTC+1 schrieb Olivier Scherler:

 I’m wondering, how long until Mozilla releases new version of Firefox 
 faster than the GWT community can recompile the plugin?

 On 16 March 2012 14:25, Fabricio Pizzichillo fpizzichi...@gmail.comwrote:

 Hello Alan.
 Can you compile the plugin for FF11?

 regards

  
 Am Freitag, 16. März 2012 15:08:13 UTC+1 schrieb Olivier Scherler:

 I’m wondering, how long until Mozilla releases new version of Firefox 
 faster than the GWT community can recompile the plugin?

 On 16 March 2012 14:25, Fabricio Pizzichillo fpizzichi...@gmail.comwrote:

 Hello Alan.
 Can you compile the plugin for FF11?

 regards

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

 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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/pKp9mbP3RkwJ.
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: HTML Code Generation

2012-03-19 Thread HK
Thank you! That brings me a step forward.
Now I have a RPC service that loops over class names and returns some
annotated classes that extend UIObject:
public ArrayListClass? extends UIObject getClassNames();
But neither can I return a List of Classes
(com.google.gwt.user.client.rpc.SerializationException: Type
'java.lang.Class' was not included in the set of types which can be
serialized by this SerializationPolicy or its Class object could not
be loaded. For security purposes, this type will not be serialized.)
nor can I instantiate a class by name in my GWTTestCase extending
class.

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



how to specify the id to a span element with a ui:field using UI binder?

2012-03-19 Thread Stevko
I am using span id=mySpanId  within my UI Binder ui.xml files
along with the debugId
I also use span ui:field=mySpan to identify dynamic elements
available to the associated View.

Adding both yields this error message -- Cannot declare id and
ui:field on the same element Element(:26)
Is there a way work around?

-- 
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 Dev plug-in for Firefox 11

2012-03-19 Thread Boris_siroB
Alan, I'm having trouble with the 64 bit Mac build. After the installation 
from the link you provided I get the *Sorry, the GWT Developer Plugin only 
supports Firefox 3.0 - 10.0 at present http://www.getfirefox.com/ *message. 


The plugin appears as *Google Web Toolkit Developer Plugin for firefox TMP*in 
the Add-ons Manager.
*
On* Sunday, March 18, 2012 4:11:17 AM UTC-4, Alan Leung wrote:

 http://acleung.com/gwt-dev-plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi

 For the mac 32/64 FF11 users.

 -Alan



 On Sat, Mar 17, 2012 at 10:49 AM, phb ghuenem...@gmail.com wrote:

 Thanks.  Any ETA on Vista x64?

 On Mar 17, 3:07 am, Alan Leung acle...@google.com wrote:
  I had just compiled a FF11 linux 32 / 64 only version here:
 
  http://acleung.com/gwt-dev-plugin.xpi
 
  -Alan
 
 
 
 
 
 
 
  On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com wrote:
   I am working on it
 
   On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com 
 wrote:
 
   Today Ubuntu is asking me to update for FF11, but of course this will
   kill my development environment.
 
   Is there an estimate of when the GWT plug-in will be available?
 
   --
   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/-/j0Nmn9KFKIQJ.
   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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/uGeu7djyLOAJ.
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 + MySql

2012-03-19 Thread Andy Stevko
Objectify works really well for me to query within GAE and return DTOs to
GWT.
http://code.google.com/p/objectify-appengine/wiki/ObjectifyWithGWT


On Mon, Mar 19, 2012 at 10:17 AM, Lothar Kimmeringer j...@kimmeringer.dewrote:

 Am 19.03.2012 14:42, schrieb vijay Rana Bhat:
  if anyone have a demo program to connect the database from gwt please
  mail me

 since the db-connection needs to happen on the server-side of your
 GWT-application, you can use every jdbc-example being done with
 MySQL out there as reference.


 Regards, Lothar

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




-- 
-- A. Stevko
===
If everything seems under control, you're just not going fast enough. M.
Andretti

-- 
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 Dev plug-in for Firefox 11

2012-03-19 Thread Alan Leung
This is weird.

I tested it on my macbook before uploading. Let me try to rebuild it.

On Mon, Mar 19, 2012 at 12:49 PM, Boris_siroB boris.brud...@gmail.comwrote:

 Alan, I'm having trouble with the 64 bit Mac build. After the installation
 from the link you provided I get the *Sorry, the GWT Developer Plugin
 only supports Firefox 3.0 - 10.0 at present http://www.getfirefox.com/
 *message.

 The plugin appears as *Google Web Toolkit Developer Plugin for firefox TMP
 * in the Add-ons Manager.

 *
 On* Sunday, March 18, 2012 4:11:17 AM UTC-4, Alan Leung wrote:

 http://acleung.com/gwt-dev-**plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi

 For the mac 32/64 FF11 users.

 -Alan



 On Sat, Mar 17, 2012 at 10:49 AM, phb ghuenem...@gmail.com wrote:

 Thanks.  Any ETA on Vista x64?

 On Mar 17, 3:07 am, Alan Leung acle...@google.com wrote:
  I had just compiled a FF11 linux 32 / 64 only version here:
 
  http://acleung.com/gwt-dev-**plugin.xpihttp://acleung.com/gwt-dev-plugin.xpi
 
  -Alan
 
 
 
 
 
 
 
  On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com
 wrote:
   I am working on it
 
   On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com
 wrote:
 
   Today Ubuntu is asking me to update for FF11, but of course this
 will
   kill my development environment.
 
   Is there an estimate of when the GWT plug-in will be available?
 
   --
   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/-/**
 j0Nmn9KFKIQJhttps://groups.google.com/d/msg/google-web-toolkit/-/j0Nmn9KFKIQJ
 .
   To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
   To unsubscribe from this group, send email to
   google-web-toolkit+**unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
   For more options, visit this group at
  http://groups.google.com/**group/google-web-toolkit?hl=enhttp://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 google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://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 view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/uGeu7djyLOAJ.

 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: ff11 gwt dev plugin

2012-03-19 Thread Alan Leung
This is a rebuild with for everything including windows:
http://acleung.com/gwt-dev-plugin-ff11.xpi

Let me know if you see any problem.

-Alan

On Mon, Mar 19, 2012 at 11:31 AM, Thad thad.humphr...@gmail.com wrote:

 This works for me with 32-bit openSUSE 11.4. Thank you!


 On Saturday, March 17, 2012 6:06:39 AM UTC-4, Alan Leung wrote:

 Correct link:

 http://acleung.com/gwt-dev-**plugin.xpihttp://acleung.com/gwt-dev-plugin.xpi

 Again FF11 linux only.


 On Sat, Mar 17, 2012 at 3:05 AM, Alan Leung acle...@google.com wrote:

 I've build it for linux 32 and 64bit for now and dropped it here:
 http://acleung.com/gwt-**dev-plugin.gwthttp://acleung.com/gwt-dev-plugin.gwt

 -Alan


 On Fri, Mar 16, 2012 at 9:04 AM, Eike Thies thies.e...@gmail.comwrote:

 to sad that i think you have a point here :( arghhh... where is my
 firefox portable just to test my gwt application :P

 Am Freitag, 16. März 2012 15:08:13 UTC+1 schrieb Olivier Scherler:

 I’m wondering, how long until Mozilla releases new version of Firefox
 faster than the GWT community can recompile the plugin?

 On 16 March 2012 14:25, Fabricio Pizzichillo 
 fpizzichi...@gmail.comwrote:

 Hello Alan.
 Can you compile the plugin for FF11?

 regards


 Am Freitag, 16. März 2012 15:08:13 UTC+1 schrieb Olivier Scherler:

 I’m wondering, how long until Mozilla releases new version of Firefox
 faster than the GWT community can recompile the plugin?

 On 16 March 2012 14:25, Fabricio Pizzichillo 
 fpizzichi...@gmail.comwrote:

 Hello Alan.
 Can you compile the plugin for FF11?

 regards

   --
 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/-/**jdcUZouxGZ0Jhttps://groups.google.com/d/msg/google-web-toolkit/-/jdcUZouxGZ0J
 .

 To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://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 view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/pKp9mbP3RkwJ.

 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 Dev plug-in for Firefox 11

2012-03-19 Thread Alan Leung
This is a rebuild with for everything including windows:
http://acleung.com/gwt-dev-plugin-ff11.xpi

Let me know if you see any problem.

-Alan

On Mon, Mar 19, 2012 at 1:43 PM, Alan Leung acle...@google.com wrote:

 This is weird.

 I tested it on my macbook before uploading. Let me try to rebuild it.


 On Mon, Mar 19, 2012 at 12:49 PM, Boris_siroB boris.brud...@gmail.comwrote:

 Alan, I'm having trouble with the 64 bit Mac build. After the
 installation from the link you provided I get the *Sorry, the GWT
 Developer Plugin only supports Firefox 3.0 - 10.0 at 
 presenthttp://www.getfirefox.com/
 *message.

 The plugin appears as *Google Web Toolkit Developer Plugin for firefox
 TMP* in the Add-ons Manager.

 *
 On* Sunday, March 18, 2012 4:11:17 AM UTC-4, Alan Leung wrote:

 http://acleung.com/gwt-dev-**plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi

 For the mac 32/64 FF11 users.

 -Alan



 On Sat, Mar 17, 2012 at 10:49 AM, phb ghuenem...@gmail.com wrote:

 Thanks.  Any ETA on Vista x64?

 On Mar 17, 3:07 am, Alan Leung acle...@google.com wrote:
  I had just compiled a FF11 linux 32 / 64 only version here:
 
  http://acleung.com/gwt-dev-**plugin.xpihttp://acleung.com/gwt-dev-plugin.xpi
 
  -Alan
 
 
 
 
 
 
 
  On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com
 wrote:
   I am working on it
 
   On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com
 wrote:
 
   Today Ubuntu is asking me to update for FF11, but of course this
 will
   kill my development environment.
 
   Is there an estimate of when the GWT plug-in will be available?
 
   --
   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/-/**
 j0Nmn9KFKIQJhttps://groups.google.com/d/msg/google-web-toolkit/-/j0Nmn9KFKIQJ
 .
   To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
   To unsubscribe from this group, send email to
   google-web-toolkit+**unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
   For more options, visit this group at
  http://groups.google.com/**group/google-web-toolkit?hl=enhttp://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 google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://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 view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/uGeu7djyLOAJ.

 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: JBoss+WAR+RPC+GWT Concepts understanding

2012-03-19 Thread Anto
Thank you so much for this pointers. Sometimes this is what you need to get 
started, a little help. Thanks again, I'm reading all this stuff.

On Saturday, March 17, 2012 11:58:30 AM UTC-4:30, Joseph Lust wrote:

 Anto,

 Honesty, you should download an existing, working sample project into 
 Eclipse or your IDE of choice and run it. Then modify it as you snoop 
 around and learn about it's inner workings. The best documentation of GWT 
 and its workings is the Google 
 documentationhttps://code.google.com/webtoolkit/overview.html. 
 Read it all, and all of your above questions should be satiated.

 There are many existing projects available online, just Google for them 
 and you'll find items like https://code.google.com/p/gwt-in-practice/ where 
 you can get working examples of the war files, UI, RPC, etc.


 Sincerely,
 Joseph


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/qeY9_CQ1LiIJ.
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.



Am I the only one who´s missing GWT on the new Google Developers Page?

2012-03-19 Thread Jambi
I am worrying about the fact that GWT lost its prominent placement on
the Google Code page. I can´t even find informations about GWT on the
new Google Developers page (haven´t checked very well though). What´s
the deal here? Is GWT´s silent death coming one step closer?

-- 
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 Dev plug-in for Firefox 11

2012-03-19 Thread Boris_siroB
Alan, thanks a lot - this one worked (mac, 64 bit FF11).

On Monday, March 19, 2012 6:43:57 PM UTC-4, Alan Leung wrote:

 This is a rebuild with for everything including windows: 
 http://acleung.com/gwt-dev-plugin-ff11.xpi

 Let me know if you see any problem.

 -Alan

 On Mon, Mar 19, 2012 at 1:43 PM, Alan Leung acle...@google.com wrote:

 This is weird.

 I tested it on my macbook before uploading. Let me try to rebuild it.


 On Mon, Mar 19, 2012 at 12:49 PM, Boris_siroB boris.brud...@gmail.comwrote:

 Alan, I'm having trouble with the 64 bit Mac build. After the 
 installation from the link you provided I get the *Sorry, the GWT 
 Developer Plugin only supports Firefox 3.0 - 10.0 at 
 presenthttp://www.getfirefox.com/ 
 *message. 

 The plugin appears as *Google Web Toolkit Developer Plugin for firefox 
 TMP* in the Add-ons Manager.

 *
 On* Sunday, March 18, 2012 4:11:17 AM UTC-4, Alan Leung wrote:

 http://acleung.com/gwt-dev-**plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi

 For the mac 32/64 FF11 users.

 -Alan

  

 On Sat, Mar 17, 2012 at 10:49 AM, phb ghuenem...@gmail.com wrote:

 Thanks.  Any ETA on Vista x64?

 On Mar 17, 3:07 am, Alan Leung acle...@google.com wrote:
  I had just compiled a FF11 linux 32 / 64 only version here:
 
  http://acleung.com/gwt-dev-**plugin.xpihttp://acleung.com/gwt-dev-plugin.xpi
 
  -Alan
 
 
 
 
 
 
 
  On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com 
 wrote:
   I am working on it
 
   On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com 
 wrote:
 
   Today Ubuntu is asking me to update for FF11, but of course this 
 will
   kill my development environment.
 
   Is there an estimate of when the GWT plug-in will be available?
 
   --
   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/-/**
 j0Nmn9KFKIQJhttps://groups.google.com/d/msg/google-web-toolkit/-/j0Nmn9KFKIQJ
 .
   To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
   To unsubscribe from this group, send email to
   google-web-toolkit+**unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
   For more options, visit this group at
  http://groups.google.com/**group/google-web-toolkit?hl=enhttp://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 google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://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 view this discussion on the web visit 
 https://groups.google.com/d/msg/google-web-toolkit/-/uGeu7djyLOAJ.

 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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/k5JwcnpaL5gJ.
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.



Total Newbie

2012-03-19 Thread dkattenb...@gov.nu.ca
Greetings ...

I'm interested in creating simple but engaging word/sentence/paragraph
games for a communications/English course I'm developing for online
delivery. Someone pointed me in the direction of GWT. I have zero
programming experience (other than radio programming). I'm thinking
GWT Developer may be for me, but can't get beyond the gobbledy-gook
(e.g. Eclipse, GUI, etc.). I'd like to see some examples of
applications that have been created in GWT Developer. Can someone
point me to a few? Is there a developers' library out there, that
illustrates what's been created?

A few concepts of what I'd like to create: Mix  match sentences; drag-
drop words into proper sequence; tossing word balls into basketball
hoops (or shooting word pucks into nets).

The more I see in the way of simple animations, the better.

Thanks!

Dave
Cambridge Bay
Nunavut

-- 
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 Dev plug-in for Firefox 11

2012-03-19 Thread Juan Pablo Gardella
Thanks Alan!

El 19 de marzo de 2012 22:45, Boris_siroB boris.brud...@gmail.comescribió:

 Alan, thanks a lot - this one worked (mac, 64 bit FF11).


 On Monday, March 19, 2012 6:43:57 PM UTC-4, Alan Leung wrote:

 This is a rebuild with for everything including windows:
 http://acleung.com/gwt-dev-**plugin-ff11.xpihttp://acleung.com/gwt-dev-plugin-ff11.xpi

 Let me know if you see any problem.

 -Alan

 On Mon, Mar 19, 2012 at 1:43 PM, Alan Leung acle...@google.com wrote:

 This is weird.

 I tested it on my macbook before uploading. Let me try to rebuild it.


 On Mon, Mar 19, 2012 at 12:49 PM, Boris_siroB 
 boris.brud...@gmail.comwrote:

 Alan, I'm having trouble with the 64 bit Mac build. After the
 installation from the link you provided I get the *Sorry, the GWT
 Developer Plugin only supports Firefox 3.0 - 10.0 at 
 presenthttp://www.getfirefox.com/
 *message.

 The plugin appears as *Google Web Toolkit Developer Plugin for firefox
 TMP* in the Add-ons Manager.

 *
 On* Sunday, March 18, 2012 4:11:17 AM UTC-4, Alan Leung wrote:

 http://acleung.com/gwt-dev-**plu**gin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi

 For the mac 32/64 FF11 users.

 -Alan



 On Sat, Mar 17, 2012 at 10:49 AM, phb ghuenem...@gmail.com wrote:

 Thanks.  Any ETA on Vista x64?

 On Mar 17, 3:07 am, Alan Leung acle...@google.com wrote:
  I had just compiled a FF11 linux 32 / 64 only version here:
 
  http://acleung.com/gwt-dev-**plu**gin.xpihttp://acleung.com/gwt-dev-plugin.xpi
 
  -Alan
 
 
 
 
 
 
 
  On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com
 wrote:
   I am working on it
 
   On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com
 wrote:
 
   Today Ubuntu is asking me to update for FF11, but of course this
 will
   kill my development environment.
 
   Is there an estimate of when the GWT plug-in will be available?
 
   --
   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/-/**j0Nmn*
 *9KFKIQJhttps://groups.google.com/d/msg/google-web-toolkit/-/j0Nmn9KFKIQJ
 .
   To post to this group, send email to google-web-toolkit@**
 googlegroup**s.com google-web-toolkit@googlegroups.com.
   To unsubscribe from this group, send email to
   google-web-toolkit+**unsubscribe**@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
   For more options, visit this group at
  http://groups.google.com/**gro**up/google-web-toolkit?hl=enhttp://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@**googlegroup
 **s.com google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscribe**@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group**/google-web-toolkit?hl=enhttp://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 view this discussion on the web visit https://groups.google.com/d/**
 msg/google-web-toolkit/-/**uGeu7djyLOAJhttps://groups.google.com/d/msg/google-web-toolkit/-/uGeu7djyLOAJ
 .

 To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://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 view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/k5JwcnpaL5gJ.

 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.



Popup show/hide toggle functionality with auto hide enabled

2012-03-19 Thread Patrick Tucker
Use a close handler to remove the style.

-- 
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/-/Jwks73D8MC4J.
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 Dev plug-in for Firefox 11

2012-03-19 Thread David Guo
Thanks Alan,it works in win 7  64 bits

On Tuesday, March 20, 2012 6:43:57 AM UTC+8, Alan Leung wrote:

 This is a rebuild with for everything including windows: 
 http://acleung.com/gwt-dev-plugin-ff11.xpi

 Let me know if you see any problem.

 -Alan

 On Mon, Mar 19, 2012 at 1:43 PM, Alan Leung acle...@google.com wrote:

 This is weird.

 I tested it on my macbook before uploading. Let me try to rebuild it.


 On Mon, Mar 19, 2012 at 12:49 PM, Boris_siroB boris.brud...@gmail.comwrote:

 Alan, I'm having trouble with the 64 bit Mac build. After the 
 installation from the link you provided I get the *Sorry, the GWT 
 Developer Plugin only supports Firefox 3.0 - 10.0 at 
 presenthttp://www.getfirefox.com/ 
 *message. 

 The plugin appears as *Google Web Toolkit Developer Plugin for firefox 
 TMP* in the Add-ons Manager.

 *
 On* Sunday, March 18, 2012 4:11:17 AM UTC-4, Alan Leung wrote:

 http://acleung.com/gwt-dev-**plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi

 For the mac 32/64 FF11 users.

 -Alan

  

 On Sat, Mar 17, 2012 at 10:49 AM, phb ghuenem...@gmail.com wrote:

 Thanks.  Any ETA on Vista x64?

 On Mar 17, 3:07 am, Alan Leung acle...@google.com wrote:
  I had just compiled a FF11 linux 32 / 64 only version here:
 
  http://acleung.com/gwt-dev-**plugin.xpihttp://acleung.com/gwt-dev-plugin.xpi
 
  -Alan
 
 
 
 
 
 
 
  On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com 
 wrote:
   I am working on it
 
   On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com 
 wrote:
 
   Today Ubuntu is asking me to update for FF11, but of course this 
 will
   kill my development environment.
 
   Is there an estimate of when the GWT plug-in will be available?
 
   --
   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/-/**
 j0Nmn9KFKIQJhttps://groups.google.com/d/msg/google-web-toolkit/-/j0Nmn9KFKIQJ
 .
   To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
   To unsubscribe from this group, send email to
   google-web-toolkit+**unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
   For more options, visit this group at
  http://groups.google.com/**group/google-web-toolkit?hl=enhttp://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 google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://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 view this discussion on the web visit 
 https://groups.google.com/d/msg/google-web-toolkit/-/uGeu7djyLOAJ.

 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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/h-UtOLfIyKcJ.
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.



DateTime picker in GWT cell table?

2012-03-19 Thread Sanjay Jain


I am uing GWT 2.4.In which i am using a cell table. This is cell table has 
a column of date time type.This column is editable.I want to set a feature 
so that on click of the cell some kind of date time picker should open and 
whatever date and time selected by the user should be updated in the 
respective cell.

I have used datepicker cell for this but it is only for the date, not for 
the time. If any body has an idea about how to get date time picker in gwt 
editable cell table please help me out. Thanks in advance.

-- 
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/-/WKbEGq8ZYpAJ.
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 specify the id to a span element with a ui:field using UI binder?

2012-03-19 Thread -sowdri-
Did you try styleName tag?? in case 'class' would do..

On Tuesday, March 20, 2012 12:48:20 AM UTC+5:30, Stevko wrote:

 I am using span id=mySpanId  within my UI Binder ui.xml files 
 along with the debugId 
 I also use span ui:field=mySpan to identify dynamic elements 
 available to the associated View. 

 Adding both yields this error message -- Cannot declare id and 
 ui:field on the same element Element(:26) 
 Is there a way work around?

-- 
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/-/dxSt779H_fEJ.
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] DateTime picker in GWT cell table?

2012-03-19 Thread Sanjay Jain


I am uing GWT 2.4.In which i am using a cell table. This is cell table has 
a column of date time type.This column is editable.I want to set a feature 
so that on click of the cell some kind of date time picker should open and 
whatever date and time selected by the user should be updated in the 
respective cell.

I have used datepicker cell for this but it is only for the date, not for 
the time. If any body has an idea about how to get date time picker in gwt 
editable cell table please help me out. Thanks in advance.

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