1. Encapsulate menuItem with taglib, jsp, JS? stackoverflow.comHow could I encapsulate the authentication logic, the URL and the label of a Menu item when I make use of e.g. a Dojo MenuItem widget? What I currently have is this:
|
2. Good alternate for Jakarta Taglibs? stackoverflow.comWe use Jakarta Taglibs to ouput some basic HTML form elements like selects. It appears this library has been retired.. are there any good alternates? Looking ... |
3. AjaxJspTag is not defined stackoverflow.comI'm trying to use AjaxTags, especially the htmlContent tag. The jsp looks as follow:
|
4. How do I find the code behind a JSP taglib? stackoverflow.comI'm working on Tomcat5 (and migrating to tomcat6). We use JSP taglibs because that's how the site was delivered to us. The vendor build their tags, which has been very useful, ... |
5. JSP TagLibs outputing HTML stackoverflow.comWe have a taglib in our project with a bunch of custom tags. These tags output some HTML to our pages, but the code is getting too ugly, too fast, since ... |
6. JSP Taglib Needed bytes.comGood afternoon, I'm about to embark upon a new project using JSP and currently struts. My big issue with the struts tag lib is the heavy use of tables for html ... |
7. Important Question regards taglib statement in a JSP. forums.netbeans.orgI am using the Jakarta Standard Tag library files jstl.jar standard.jar from the v 1.1 download. The following works in v 6.5.1 of Netbeans: <%@taglib prefix="c" uri="http://java.sun.com/jstl/core" %> <%@taglib prefix="sql" ... |
8. taglib coderanch.com |
9. Taglib's not running coderanch.comApache is the webserver Tomcat uses. Tomcat is a servlet/JSP container. A webserver by itself does not have a servlet/JSP container and cannot execute Java code. A server with Tomcat properly configured will receive a request into the webserver, which determines (via URL patterns) if it can handle the request or if it needs to pass it on to Tomcat to ... |
10. Taglib coderanch.comHi Prad, I am not really sure if this is a direct answer to your question. A servlet engine may maintain a pool of tag instances, so if there's an avaialable instance of your tag (even if its attributes change) the engine will use that instance. However we (as programmers) have no control over the pooling that takes place. Regarding your ... |
11. taglibs coderanch.com |
12. NEWBIE: JSP Taglib Problem coderanch.comI am trying to write my first Custom TagLib, however when I point my browser to the jsp file that uses the TagLib I get this error message: : Parse Error in the tag library descriptor: External entity not found: "http://java.sun.com/dtd/web-jsptaglibrary_1.2.dtd". and then it forces me to go online to net even with Tomcat(3.3a) running. Here is the part of the ... |
13. Datetime taglib coderanch.comI downloaded the jakarta datetime taglib, and am able to use it well enough. My problem is, I want to be able to show what the current date is for the client. However, since the server is in England, it keeps showing the date for the server. Is there a way using this taglib to do this (hopefully someone has used ... |
14. Forte 2.0 and taglibs coderanch.comHi all, I try to use the internal tomcat-server of Forte 2.0 with external taglibs. I have tried to follow the instruction from Jakarta but I get the following error when I run (which from what it seems start or restart the mini-tomcat included in the forte IDE) the JSP-page below from within Forte <%@ taglib uri="http://jakarta.apache.org/taglibs/datetime-1.0" prefix="dt" %> <%@page contentType="text/html"%> ... |
15. Jakarta Taglib project coderanch.comOriginally posted by Michael Yuan: But the whole point of custom tags is to allow non-programmers to use them. Does anyone have any thoughts? I agree with you. That was the point of tag libs, and I think that some developers have forgotten that, or most of them don't work with web designers, they do all the web work. If you're ... |
16. taglibs in iPlanet coderanch.comhi can anybody tell me how to configure taglibs in iPlanet 4.1? i used tomcat before so i know we put description in web.xml file that has taglib's path etc and in taglib we describe tag information alogn with class paths for the tag handler classes... but the question is where to i write the similar stuff as in web.xml about ... |
17. TagLib in WCS coderanch.com |
18. Export data to various formats in jsp using taglibs - how? coderanch.com |
19. Problem using taglib with Tomcat4.0... coderanch.comOriginally posted by William Brogden: Tomcat 4 does use a different servlet API from Tomcat 3. Have the taglib classes been recompiled using the newer API jar files? Bill I am bit confused here... What I did is compiling the taglib classes along with my other application source files and then packaged taglib classes in jar file. But in this whole ... |
20. [taglibs] Iterating over a Hashtable coderanch.comHey, Having a problem iterating over a Hashtable. The iterator is getting the next entry set in the hashtable. Instead, I want to get the values. Enough blabbering. Here's the code: With Scriptlet<% Hashtable users = (Hashtable)application.getAttribute("users"); if(users != null && users.size() > 0){ for(Enumeration e = users.elements() ; e.hasMoreElements() ;) { User user ... |
21. How to access application object in taglib coderanch.com |
22. howto use taglibs ? coderanch.com |
23. jsp taglib problem in IBM websphere4.0 coderanch.com |
24. Taglib question more info... coderanch.com |
25. Custom TagLib coderanch.comI am trying to get a Simple Tag to work Currently here is what I have: WEB-INF\SimpleTag.tld |
26. Custom TagLib Insert Head Info coderanch.comI have a custom tag library that when I place it in the JSP page it prints out a button (image w/ a link). The button has associated javascript code with it. Is there a way to direct the output of the TagLib so the html written to display the button is added to the section of the page (where ... |
27. Strange problems with taglib coderanch.comDear all, I found that if the taglib defines a tag which uses "values" as its attribute, the weblogic will show error like below: /internal_index.jsp(1): Error in using tag library uri='/tlt' prefix='tlt': There is no setter method for property 'values', for Tag class 'com.hactl.framework.gui.DateDisplayTag' probably occurred due to an error in /internal_index.jsp line 1: <%@ taglib uri="/tlt" prefix="tlt" %> I checked ... |
28. does iPlanet4.1 SP7 supports Taglibs? coderanch.com |
29. Why the class can't handle the taglib correctly? coderanch.com |
30. detecting taglib present or missing coderanch.com |
31. Taglib coderanch.com |
32. Taglib problems coderanch.comI deploy a war file called aex.war in the $CATALINA_HOME/webapps/ directory. I start Tomcat and the war file explodes as it should. I use the browser to hit my application http://localhost:8080/aex/index.html and I get this error HTTP Status 404 - /aex/index.html type Status report message /aex/index.html description The requested resource (/aex/index.html) is not available. I checked the logs, and it seems ... |
33. What taglib do you recommend? coderanch.comI am working on choosing some tag libraries for my project. I could create custom tags, but I'd much prefer to use pre-built open-source if possible. I am developing in WSAD 4.03 behind a firewall. This gives me a few constraints: - taglib must be JSP 1.1 - I must have access to the full source code - I would prefer ... |
34. Taglibs not found problem coderanch.com |
35. how taglibs are handled by compiler? coderanch.com |
36. Taglibs coderanch.com |
37. How to have mulitple taglib declarations coderanch.com |
38. New to Taglibs ... can anybody help? coderanch.com |
39. Custom Taglib Question coderanch.comThis post may contain a couple of questions, but since they are related I didn't want to start several threads. I realize that when you write custom tags it would make sense to make them reusable. However, if someone is relativly quick at creating custom tags, how important is reusability when the design goal is to clean up the JSP pages ... |
40. How do u pass an object to a taglib from a jsp? coderanch.com |
41. Overhead in taglib directives? coderanch.comHow much if any overhead is there associated with taglib directives? (ie <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> ) We have a fairly large project which I have recently joined, and am slowly refactoring to make more maintainable. I'm trying to pull out common pieces of our JSP functionality into JSPF fragments (I realize that saying JSPF fragments is redundant, but so ... |
42. Problems with pager-taglib coderanch.com |
43. taglib coderanch.com |
44. Fragment Timing/Profiling Taglib? coderanch.com |
45. jakarta taglibs releases coderanch.com |
46. what is taglib ? coderanch.comTaglibs are actually used to make our custom tags for use in JSPs. These have a great advantage of reuseability.Suppose i have made a tag for iteration. i have written the code only once in my tag class but i can use it anywhere in any jsp after including that. So this way i have saved a lot of code. And ... |
47. problem while using display taglib coderanch.com |
48. still problem with display taglib coderanch.com |
49. jakarta taglibs mailer 1.1 coderanch.com |
50. taglib question. coderanch.com |
51. taglibs migrated from tomcat3.2 to 4.1 coderanch.comHi i got few taglibraries which are working fine with tomcat3.22 . i migrated the application to higher version of tomcat,ie tomcat4.1. now i am facing some exceptions,that too from the taglibraries code.what all changes need to be done for tomcat4.1 inorder to get the taglibraries working. i already have my Taglib jar file in /WEB_INF/lib and the tld file under ... |
52. Taglib coderanch.com |
53. taglibs Working in tomcat3.22 but failing in tomcat4.1.31 coderanch.com |
54. Calling a TagLib from another taglib is it possible?? coderanch.com |
55. Taglibs references coderanch.com |
56. Taglib problem coderanch.comHi I am not able to pass the dynamic parameter to taglib . I am using the weblogic 8.1 version . |
98. taglib JSP 2.0 problem coderanch.com |
99. Problem with taglibs coderanch.com |
100. taglib descriptor coderanch.com |