TagLibs is a shortened form of "Tag Libraries". Tag Libraries are libraries that include "tags". Tags are usually used to address presentation concerns and encapsulate view-specific logic.

learn more… | top users | synonyms

0
votes
1answer
41 views

How can i use taglib in JSP page

I know this problem has been posted many times but every solutions that have been posted didn't solve my problem whereas my issue is the same. I have a JSP page and i want to use taglib in. So i added ...
0
votes
1answer
42 views

taglib : how to edit Album Artist?

How to modify the "Album Artist" field of a MP3 file with the library TagLib ? Is there something similar to : f.tag()->setArtist("blabla"); ?
0
votes
0answers
11 views

Taglib/namespace for PrimeFaces isn't being resolved

I am using Oracle Enterprise Pack for Eclipse, running WebSphere Application server, and using Maven. I have added PrimeFaces 3.5 to the dependencies in the POM file and <html ...
0
votes
0answers
13 views

C# axWindowsMediaPlayer Using File That Is Being Accessed

I am creating a C# program to edit music file attributes, using the TagLib, and wmpLib libraries. I created a axWindowsMediaPlayer control to have the ability to play a song when it is selected. When ...
0
votes
0answers
21 views

Dynamic Loading Grids; Javascript or Tag library

I am looking for a grid implementation on my dashboard. The requirement here is that if the data that the grid might be fetching changes while a user is looking through the grid, the changes should be ...
2
votes
1answer
32 views

How to check whether an error happened on a specific property with spring mvc

I'm using the form tag. <form:form commandName="foo"> <div class="myclass "> <label>Foo</label> <form:input path="fooName"/> </div> ...
1
vote
1answer
43 views

Combining Spring Security Tags and Struts2 Tags

I'm currently using Spring Security to manage login and sessions on my Struts2 application. To retrieve the logged user in a JSP page I'm using the sec tag lib by importing the following to my jsp. ...
0
votes
0answers
18 views

Taglib that generates output that has a taglib

I make a custom taglib that outputs html, and I want to have another taglib as part of the html. For instance: output.println("<foo:buildTable />"); I do have taglib "foo" referenced ...
0
votes
0answers
20 views

Create new custom tag from netui select tag

For example, I have this code: enter code here <netui:select id="smt" dataSource="smt" > <netui:selectOption value="1" title="one">red</netui:selectOption> <netui:selectOption ...
1
vote
1answer
55 views

How to pass a BigDecimal to a custom taglib (WebSphere)

I have a custom taglib which I try to give BigDecimal to, but the scale isn't kept. It seems like the BigDecimal is converted to a double, then back to a BigDecimal. Is this a bug in WebSphere? or am ...
0
votes
1answer
44 views

How to set JSP variable in tag to read with <%= viewEditPromotionURL>?

I was thinking such variable can only be set by Java code: <% String viewEditPromotionURL="http://promotion.info"; %> but I found that it can also be set in custom tag: ...
2
votes
0answers
34 views

Programmatically register taglib reference

Is there a way to programmatically, in a java code, register custom taglib reference? I am using JSF 1.2_09, rich faces 3.3.3, jsf-facelets 1.1.14. Specifically: In this code, jsf Expression ...
1
vote
0answers
60 views

Using JSTL core lib fails when creating custom tag

So I'm trying to import two taglibs: <%@ taglib uri="MyCustomTagLib" prefix="myLib" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> However, I can only use ONE of ...
0
votes
0answers
50 views

I am messing with Taglibs and annotations in Spring MVC in an attempt to build a pluggable UI.

after searching for a long time, and mulling things in my head, I've come up with a rather brief solution to a problem that seems to be causing headaches all over the place: how to build a pluggable ...
0
votes
1answer
22 views

Where can I find the documentation for the spring security taglibs?

Where can I find the documentation for the spring security taglibs? Tried to google but failed!
0
votes
1answer
93 views

Constructing Custom Heroku Ruby/Rails Buildpack for Web App Using Taglib-Ruby

I've built an application using Rails 3.2 that makes use of the taglib-ruby gem. I need to upload this app to Heroku, but it cannot successfully build the taglib-ruby gem because the associated C++ ...
1
vote
1answer
75 views

Tag Library supports namespace: https://ajax4jsf.dev.java.net/ajax, but no tag was defined for name: support

When I tried to add <a4j:support> tag to JSF 2.0, I got the following error Tag Library supports namespace: https://ajax4jsf.dev.java.net/ajax, but no tag was defined for name: support How ...
1
vote
0answers
50 views

How to load external JSP taglib in Grails properly

I'm trying to integrate Isomorphic SmartClient with Grails. SmartClient server has some custom JSP taglibs described with xml file (it's TLD file based on schema web-jsptaglibrary_1_1.dtd). I have ...
0
votes
0answers
71 views

INFO: TLD skipped. URI: <tag name URI> is already defined

I have a web application that is being migrated from Tomcat 5.5.35 to Tomcat 7.0.39. Presently, there are several custom taglibs, each defined in its own tld file. Here is one example: <?xml ...
20
votes
5answers
404 views

Taglib for Android

I am trying to compile Taglib for Android. I have downloaded the latest version for Taglib from here . After compiling it for arm-linux build I have successfully imported it in my application, but ...
0
votes
1answer
84 views

Get config setting in custom taglib using Spring “context-property-placeholder”

I'm creating a custom taglib, and would like to use some config options that are loaded via the underlying Spring framework using: <context:property-placeholder ...
0
votes
1answer
62 views

how to get song cover art using TagLib

Here's the code where I was able to get the song's picture/cover art. TagLib::MPEG::File.open("song_file_name.mp3") do |file| tag = file.id3v2_tag cover = tag.frame_list('APIC').first ...
0
votes
1answer
46 views

generating struts2 taglib using Java6 Annotation Processor with ant

I have written some Struts2 taglib and want to package them into a jar. I am not using maven so I used to use Ant with apt tag with struts-annotations-1.0.5.jar. And my task looks like the following ...
0
votes
1answer
52 views

if taglib comparing with two items of forEach jstl

I have an forEach taglib inside another one. I would like to compare one attribute of each object being listed in its respective taglib. <c:forEach items="${andares}" var="andar"> ...
0
votes
0answers
14 views

Is there a way to create a taglib without declaring it in web.xml?

I'm using Servlet 3.0 and Java EE 6 in my project and there is no web.xml file - I would like to keep it that way (using annotations everytime I can). The old way to do it is editing web.xml file ...
0
votes
0answers
35 views

Stripes fails silently

I'm trying to update some action bean properties using Stripes framework. A tag like this: <s:text name="userName"></s:text> should invoke the public void setUserName(String ...
0
votes
1answer
60 views

using a resource inside a taglib definition in grails?

I’m new to grails and I want to write a taglib but I can't figure out how to reference a resource inside the MyTagLib.groovy file. The resource that I want retrieve the path is a picture. I tried ...
0
votes
1answer
63 views

Taglib inheritance in jsp:include

Is it possible to inherit taglibs or imports from parent JSPs in their "descendants"? Let me show you an example header.jsp <%@ page contentType="text/html" isELIgnored="false" ...
0
votes
0answers
35 views

taglib not working when imported to Jboss from tomcat

I have an web application which is initially deployed in Tomcat and it is working fine without any issue. Now we want to move it to JBoss. My application has following folder structure for taglib ...
0
votes
0answers
46 views

Weblogic 10g to 11g: custom ELFunction not working

I've a working application on Weblogic 10gR3. I've migrated the application on Weblogic 11gR1. All it's working but there are some custom function that aren't working no more. The configuration are ...
1
vote
1answer
106 views

The latest TagLib port for C#?

Does anybody know where can I download C# wrapper for the latest TagLib version? The latest version I use is from the Mono package: https://github.com/mono/taglib-sharp But it doesn't support tags of ...
0
votes
0answers
50 views

taglib not found during amarok compilation

I was compiling amarok and couldn't on compiling using cmake(cmake -DCMAKE_INSTALL_PREFIX=$HOME/kde -DCMAKE_BUILD_TYPE=debugfull $HOME/kde/src/amarok) I get the error: -- ...
0
votes
1answer
71 views

JSP custom tags null value

I'm facing a problem with my own jsp tag. I want it to allow null-values, but if I want to give null-values to my handler, the value is 0 and not null. My Handler: public class BigDecimalStripper ...
0
votes
0answers
132 views

Unable to print from a DB using <logic:iterate> and <logic:bean>

I am working on a small Struts 1.2.4 Phonebook app. The app contains forms in a single JSP to add , search , and edit/delete the data. My problem lies in displaying the ResultSet which is Obtained on ...
4
votes
1answer
101 views

Aspect(-like) function for closures

In Grails (at least up to the current version 2.2), taglibs are closures. For certain taglib closures, I'd like to use some "around" type advice / wrap the closure in an interceptor. To put it ...
0
votes
2answers
64 views

Custom JSF component: Using “startElement” with “script” results in a comment

I'm rendering a custom JSF component. In the method encodeBegin I want to include some java script. public void encodeBegin(FacesContext context) throws IOException { ResponseWriter writer = ...
1
vote
1answer
92 views

Very simple custom taglib function not working

I'm banging my head over why my custom taglib function isn't working. The example is using Math.cos and Math.sin. Here's the class: package foo.tags; public class Math { public java.lang.Double ...
0
votes
1answer
177 views

Build and include JSF taglib as jar in a Dynamic Web Project using Maven

I am working on a JSF taglib. To test it I compile it to a JAR as described here and add it manually to a Dynamic Web Project (In the WEB-INF/lib directory). I know that this step can be automated, ...
0
votes
1answer
93 views

Java EE Tag Library with Spring MVC

I'm import the Java EE standard tag library into jsp page but it does not function properly(Not working). What is the reason ? Is it relate to Spring MVC or servlet 3.0 ? I'm include the tag library ...
1
vote
0answers
51 views

JSF: Mixing composite and classic tag results in warning

i asked before it is possible to mix JSF classic and composite components in one taglib file (stackoverflow post) i was given the answer that it is allowed according to xsd but i now get strange ...
0
votes
1answer
93 views

How to submit a form created with spring form tag using dojo

I've a form created with spring form tag. <form:form commandName="cmdName" action="save" id="formId"> I'm trying to submit this form after validation using Dojo. When I use: ...
1
vote
0answers
59 views

More than one library class in a taglib.xml

Is there a way that i can use more (custom) library at taglib.functions.xml, something like that: <?xml version="1.0"?> <!DOCTYPE facelet-taglib PUBLIC "-//Sun Microsystems, ...
-1
votes
2answers
872 views

Display a list in a Struts 1 form

I have to write a backoffice page in order to determine which shops have to be display on a frontoffice page, in a Struts 1 application. So I have a list of shops (boutiques, in the code), contained ...
0
votes
1answer
163 views

Is it necessary to declare tags in facelet taglib 2.0?

I've read the tutorial: http://jsflive.wordpress.com/2011/03/24/custom-component-library/ in which the authors are making empty .taglib.xml file, and according to tutorial the tags should be ...
0
votes
1answer
156 views

datatables for jsp

When I searched for Datatables Tag Lib, I came across with two alternatives: http://tduchateau.github.com/DataTables-taglib/index.html http://datatables4j.github.com/docs/main.changelog.html ...
0
votes
1answer
213 views

Grails: How to put javascript/ajax in taglib?

How to put javascript code in grails taglib? example I have grails taglib : def ajaxSelect = { attrs -> out << """ <script type="text/javascript"> ...
0
votes
1answer
170 views

grails how to override g message tag

I am a newbie in Grails so you may find my question quite naive. I would like to override g message tag. I want to add new features in tag's behaviour and then call the original implementation from ...
0
votes
1answer
38 views

How can I pass a float arg into a custom EL Function (jsp)?

Error: The method exchangeConversion(String, String, float) in the type MyExchangeClass is not applicable for the arguments (String, String, double) Code in jsp file, error with 15.4 and 15.4f as ...
1
vote
0answers
62 views

TagLib-sharp File from ByteArray/Stream

Is it possible edit Tags of an ByteArray which represents a Mp3-File with TagLib#? At the moment I need to do it this way: System.IO.File.WriteAllBytes(path + file + ".mp3", byt); TagLib.File f = ...
1
vote
2answers
87 views

Taglibs in PrimeFaces 3.2

I'm using primefaces 3.2. project is build with maven <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...

1 2 3 4 5 10