Ok.. sorry if I am not giving the clear picture.. Assume I have a jsp file which has a custom taglib file like below.
<%@ taglib uri="/WEB-INF/security_taglib.tld" prefix="security" %> <security:permitted privilege="<%= Role.MODIFY%>"> // todo. display some text box. here </security:permitted> So while converting this jsp page to GWT, I need to import this security taglib file. How can I design this page with GWT. On Oct 28, 11:01 am, Lothar Kimmeringer <[EMAIL PROTECTED]> wrote: > Krish schrieb: > > > Yes, GWT application is embedded into html page(i.e. GWT compiler > > converts java file to js file). But after conversion, I can't use any > > of my custom taglibs(i.e. as I dont have any control on compiled > > code). > > I'm still not sure if we're talking about the same thing. Even after > compilation there still is a HTML-page that loads the Javascript- > file containing the application. This page can of course contain > taglibs that are processed by the server before it's served to a > client. > > All the things that are compiled to Javascript are processed > by the client (browser) so taglibs are not possible, because > they need to be processed by the server. But you of course can > start requests to the server by using RequestBuilder and present > the result in a HTML-widget. > > 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 [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 -~----------~----~----~----~------~----~------~--~---
