Tagged Questions
The tagfile tag has no wiki summary.
8
votes
1answer
697 views
When to use <ui:include>, tag files, composite components and/or custom components?
I started using JSF 2.0 with Facelets recently and got puzzled by new composite components knowing existing <ui:include> and other templating techniques offered by Facelets 1.x.
What is the ...
3
votes
1answer
411 views
packaging tagfiles in jar
how can i package tagfiles in a jar so it can be reused acrossed multiple projects?
1
vote
1answer
26 views
Why can I output an attribute from inside a JSP tag file but not from the JSP page that calls the tag file?
When I call it from main.jsp, test is printed out as expected:
<%@ tag language="java" pageEncoding="utf-8" isELIgnored="false" %>
<%@ taglib prefix="c" ...
1
vote
0answers
221 views
Tagfiles (.tag) in JAR (Java App) not picked up in RAD 7
I am using Websphere 6.1.0.23 and RAD7. I have a Java App (SearchJava) which has a tagfile cluster.tag under src/META-INF/tags. I also have search.tld under src/META-INF/tld which has
...
1
vote
1answer
527 views
Eclipse Ganymede not validating tag files properly
When editing foo.tag with a line like:
<h1>Header</h1>
it says on the <h1>: "Unknown tag (h1)"
it says on the </h1>: "Error"
This only happens in tag files, not JSPs.
Ayudame?
1
vote
1answer
550 views
jetty - reload tag file in jar
I have my main web project and a common project which houses my tag files. Currently I use jetty in exploded structure and I jar up my common project with my tag files and place into web-inf/lib.
...
1
vote
2answers
2k views
fragment was not found at expected path (eclipse jsp)
In eclipse, I have a javaproject (not a web project), though it does provide reusable tag files.
layout
+src
+++META-INF
----my.tld
+++++++++++tags
---------------include.jsp
I keep on getting ...
1
vote
2answers
847 views
jsp create scripting variable like jsp:usebean does
I would like to do something like
<test:di id="someService" /`>
<%
someService.methodCall();
%>
where <test:di
gets and instantiates a service bean and creates a ...
0
votes
2answers
74 views
Can I use a *.tag from another *.tag file in the same /WEB-INF/tags folder?
I am trying to refactor my JSP code so that a small conditional test condition gets reused through a *.tag file.
There are some big parts of my UI that depend on the value of a two-state property of ...
0
votes
2answers
3k views
How to create a InputText Tag File with a value attribute and a backing bean?
I want to create a Tag (Source) File to get a custom tag in facelets (as described here). I want it to get used like this:
<my:inputText value="#{myBean.someString}"/>
<my:inputText ...