Adding GWT widget in a simple web app

2009-03-30 Thread lan

Is there a way to simply add GWT widgets in a simple web app? I mean
is it possible to use GWT components in a non-GWT application?
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: Adding GWT widget in a simple web app

2009-03-30 Thread rudolf michael
Remember that your host page which is the entry point of your module can be
anything you want(.html, .aspx,.asp,.jsp,...)
all you need to do is just to add your module there. using meta tags or a js
src  tag that points to your module js file.

On Mon, Mar 30, 2009 at 11:05 AM, lan anouar.khem...@gmail.com wrote:


 Is there a way to simply add GWT widgets in a simple web app? I mean
 is it possible to use GWT components in a non-GWT application?
 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: Adding GWT widget in a simple web app

2009-03-30 Thread Peter Ondruška
Yes it is easy. See a live sample at http://www.kaibo.eu/home.html. The
contact dialog box is added using:
RootPanel.get(contactme).add(p); // p is just a panel

and the html page as a div for it:

div id=contactme/div

Peter

On Mon, Mar 30, 2009 at 10:05 AM, lan anouar.khem...@gmail.com wrote:


 Is there a way to simply add GWT widgets in a simple web app? I mean
 is it possible to use GWT components in a non-GWT application?
 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
-~--~~~~--~~--~--~---