0
votes
0answers
15 views
logic:iterate in struts 1.3.6 (netbeans 6.7.1)
Today I noticed something strange.
I have an action:
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws …
3
votes
2answers
145 views
Grails: Templates vs TagLibs.
In Grails, there are two mechanisms for modularity in the view layers : template and taglib.
While I am writing my own Grail app, I am often facing the same question when I need to write an UI …
0
votes
4answers
50 views
In JSP is it necessary to redeclare tag libraries in included files?
Im not really familiar with how this works in JSP
but in the
main.jsp template there is this:
<%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
<jsp:include …
0
votes
1answer
33 views
question concerning JSP and javascript
I'm a JSP newbie, I understand that there are some kind of taglib files as I understand they are some kind of custom defined JSP tags. Here is a snippet of javascript code which I don't understand :
…
0
votes
4answers
306 views
Spring security - SecurityContext.authentication null in taglib and jsp but ok in controller
Hi all,
I've been struggling with this issue for a little while now. Found several posts about it but none solved my problem. It will probably have something to do with the fact that a …
1
vote
1answer
51 views
Can you get the filename of the jsp file using a taglib in the taglib code
Is it possible to get the filename of the jsp file that uses a taglib from the java code?
I.e.
public int doStartTag() throws JspException
{
try
{
String xxx = pageContext.?
Where xxx would …
0
votes
3answers
704 views
Eclipse “cannot find the tag library descriptor”
I have a JEE project which build fine with Ant, deploys perfectly to JBoss, and runs without any trouble. This project includes a few custom tag libraries, which are also working without any …
0
votes
2answers
69 views
Open file in TagLib with Unicode chars in filename
Hello,
I am quite new to the C++ 'area' so I hope this will not be just another silly 'C++ strings' question.
Here is my problem. I want to integrate TagLib (1.5, 1.6 as soon as I manage to build it …
2
votes
1answer
33 views
JSON-Taglib library not working w/ SDK 1.6 ??
Hi guys,
I'm currently working on a project that uses the json-taglib-0.4.1.jar library to do some json communication between front and back end.
That library use to work fine until we migrated to …
1
vote
2answers
25 views
Encapsulate menuItem with taglib, jsp, JS?
How 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:
<auth:isRole …
0
votes
1answer
35 views
Missing taglib when using GroovyPagesTemplateEngine
G'day all,
I've been processing dynamic GSP content via tags in my own taglib which works just fine using code like:
def GroovyPagesTemplateEngine groovyPagesTemplateEngine
...
def …
0
votes
1answer
217 views
how to pass parameter to a javascript function using struts taglib?
Hi
I have a javascript function updateHiddenField(value) that gets a value as parameter and then sets this value as the value of a hidden field.
I have a JavaBean flight with parameters id and …
0
votes
1answer
64 views
Declare function in taglib that has an inner class in the signature
Let's say I want to declare a function that has this java signature:
public static String getStatusString(ArticleAndStatus aas) {
//...
}
and that ArticleAndStatus is an inner class of …
0
votes
1answer
37 views
Is it possible to turn off taglib scanning in Tomcat?
On startup, Tomcat recursively scans the WEB-INF directories for TLD (Tag Library Descriptor) files. As a result, if a webapp has a lot of files under that directory, it slows down the startup …
1
vote
4answers
490 views
Is ajax4jsf dead? What other AJAX libraries for JSF are there?
I am currently using the JBoss RichFaces JSF component library for the project I am working on. It works quite well in general, especially the AJAX support provided by ajax4jsf (A4J), but I find the …
