What you can do is add a custom tag (say <div myproperty="mywidget1"></div>, or <mytag></mytag> or <div class="myclass"></div> - with content in the tag if you like) and then you make the page a GWT page (by including the
<script language="javascript" src="com.some.thing.Module.nocache.js"></script> in the <head>) The GWT app *must* have an entry point, or it won't run. The GWT app (same one in every page if you like - it only gets downloaded once if you do that, no matter how many pages you include it in) then looks for the tags and adds the GWT content. In effect then, your HTML developers only need to know how to ue your special tags, but someone (and it can be one person) has to write the GWT app to find the tags and add the content. Have I made myself clear enough? If not, say so, and I'll write you a demo - it'll only take 2 minutes. Ian 2008/8/26 Sam <[EMAIL PROTECTED]> > > Hello Lan , > Thanks a lot for the reply. so do you mean to say that its not > possible for me to go on building the custom widgets as per my product > need and let the developers use them as and when required WITHOUT > actually exposing them to the GWT technology ? > What I was thinking is , it could be possible to create the custom > widgets (either through DOM manupulation API in GWT or composite > widget) and then let the application developers use these widget > through some tag or so . > But from the last answer it seems an application develper needs to > write a class implementing EntryPoint interface for all the JSP pages > i.e. they should be given an exposure to GWT. is it the scenerio ? > Actually I was planning to write a tag library which could make the > use of all the widgets that GWT provides and let applicaion developers > use theose tags there by hiding the internal GWT stuff from the > developers. > Thanks > Samir > > > > > -- Ian http://examples.roughian.com ___________________________________ Life is either a daring adventure or nothing. Security is mostly a superstition. It does not exist in nature. - Helen Keller ___________________________________ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
