Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
7k views

Access request in django custom template tags

My code in myapp_extras.py: from django import template register = template.Library() @register.inclusion_tag('new/userinfo.html') def address(): address = request.session['address'] return ...
3
votes
4answers
113 views

How to implement dynamic GUI in JSP

i have a requirement where i need to display some fields on the JSP. These fields are dynamic in nature, meaning, for ex:, if i changed some value in the dropdown, some fields will be hidden and some ...
3
votes
1answer
462 views

using innerHTML at custom tag in IE

I have a problem I just can't solve, and need your advice since I'm out of ideas: Context: I'm using tinyMCE Editor on my website and developed a custom plugin to include external xml files. So far ...
3
votes
4answers
120 views

When should one use Custom Tag in CFML?

What are some common use cases for implementing CFML Custom Tag (not CFX tag)? In 3 yrs of my CF exp I've never written one. Would someone please enlighten me, under which use case / situation would ...
3
votes
6answers
2k views

[X]HTML custom tags: pros & cons

I'd like to use some semantic [X]HTML tags instead of <div>s: <article>, <product>, <footer> etc. Some of them are already presented in the upcoming HTML5, however, it's not ...
3
votes
2answers
254 views

Custom Django tag & jQuery

I'm new to Django. Today I created some Django custom tags which is not that hard. But now I wonder what is the best way to include some jQuery or some Javascript code packed into my custom tag ...
3
votes
7answers
432 views

How do you decide what to use: UDF or Custom Tag?

WACK says: If you feel you need to have lots of arguments, consider creating a CT instead. ... CT are significantly more powerful and flexible than custom functions. Try to use UDFs ...
2
votes
4answers
70 views

Custom tags… why not?

I found a site with an guide to add custom tags to html, the same way people make ie work with the new HTML5 tags. I must admit I think it would be great to add my own tags, would make it easier to ...
2
votes
2answers
219 views

Expand inline tags in custom Javadoc taglet

I wrote a custom Javadoc taglet that adds a new note tag: ... public boolean isInlineTag() { return false; } public String toString(Tag tag) { return "<pre class='note'>" + ...
1
vote
1answer
36 views

What are <required> and <rtexprvalue> used for?

I was working on custom tag libraries and I was confused how the <required> and <rtexprvalue> tags are used in the TLD file to define a custom tag attribute. What are these tags? What ...
1
vote
1answer
42 views

JSP custom tag ClassNotFoundException

I'm trying to use the following class in a JSP-based custom tag: public class HelloWorldTest { public void hello1() { } } The tag file is in WEB-INF/tags/hello.tag: <%@ tag language="java" ...
1
vote
1answer
132 views

How to extend UISelectOne component for enum property to automatically populate all enum values as select items?

I want to use simplified select one tag, which would generate select items list for enums automatically. So, the result would be: <s:enumSelectOneMenu value="#{myBean.enumValue}"/> So, inside ...
1
vote
2answers
74 views

How do i avoid generating html in a java custom tag handler?

Every example i can find has the tag handler java class generating html and spewing it out with out.print(someHTML); Is there a way to include a jsp and add attributes to the request instead?
1
vote
2answers
318 views

Strange errors for custom tag in JSP file generating dynamic content

So I'm working on writing a web program in JSP, and Java servlets using the MVC architecture, where I have to list a bunch of items I retrieve from a database on a JSP page, using a custom forEach ...
1
vote
2answers
241 views

Passing a value to a custom tag

I have a custom tag that I'm trying to pass a String to. It was giving me a NullPointerException. After making some edits suggested below, I am getting ${note} instead of the processed output I had ...
1
vote
2answers
2k views

How to programmatically resolve property placeholder in Spring

I currently work on a web application based on Spring 3.1.0.M1, annotations based, and I have a problem with resolving property placeholders in one specific place of my application. Here is the ...
1
vote
3answers
231 views

Parse a custom tag using request information in JSP

I have a simple problem but I haven't had any luck finding the solution with Google. I want to expand custom JSP tags but I want to be able to parse it differently depending on request information. ...
1
vote
1answer
1k views

how to activate DJANGO.CORE.CONTEXT_PROCESSORS.REQUEST

I read this "DJANGO.CORE.CONTEXT_PROCESSORS.REQUEST If TEMPLATE_CONTEXT_PROCESSORS contains this processor, every RequestContext will contain a variable request, which is the current HttpRequest. ...
0
votes
0answers
12 views

JBoss 7.1 TLD loading issue

We have been using JBoss 6.1 with Struts2 and our own custom tags in the web app. The custom tags TLD is kept under WEB-INF/classes/META-INF, and JSP refers to the URI mentioned in that TLD file. We ...
0
votes
1answer
45 views

Create custom tag for validator in JSF

I have created a custom validator for my JSF project. I can use it like this: <h:inputText id="inpUsername" value="#{testbean.value}"> <f:validator validatorId="validators.TestValidator" ...
0
votes
1answer
31 views

Using Custom Tags and JSP with AJAX functionality

I am developing a simple web application in which a web page accept a value from user through textfield and passes it to the custom tag which process that input string and prints the output code is ...
0
votes
1answer
36 views

Reuseable component/tag in Struts2 projects

I am using struts in my projects. I have an idea to create a reusable component (May be tag or plugin, not sure) which can be used on different pages within same website or it can be imported in new ...
0
votes
1answer
69 views

Using helpers (or render partials) from custom RedCloth tags

I'm trying to call a view helper from a custom RedCloth tag and am having absolutely no luck at all. All of the examples I can find have the custom tag method create and return a literal string ...
0
votes
0answers
26 views

Use Custom tag to output a table

I have tList.tld file that points to list.tag file 1/tList.tld file: <tlib-version>1.0</tlib-version> <short-name>tlist</short-name> ...
0
votes
0answers
11 views

Need for custom tags in JSF and JSTL/El

Why do we need to use custom tags in JSF and JSTL/EL even though there are sufficient in-built tags (HTML or otherwise) are provided? What are the applications and usages of them?
0
votes
3answers
67 views

Defining your own JSP tag body

Recently I've decided to get some knowledge about writing custom tags. And there is a problem. In my web app I use some JSTL tags and in every JSP page I have got an identical piece of code: ...
0
votes
0answers
40 views

How to access member variable, member method of java class In JSP using custom tags

I have situations here , there is already existing code,where in they have not made entries of TLD file in web.xml of file,but still they are accessing methods of helper class like this ${obj.method} ...
0
votes
0answers
39 views

How to access arrays of object inside JSP

I am trying to access the arrays of object inside the custom tags but I was not able to to display it in my JSP.I have done it this way. I have declare the custom tag in tld file, then in the tag ...
0
votes
2answers
60 views

I got the error “HtmlEncoderTag cannot be resolved to a type” on defining a custom tag?

I am defining a custom tag "htmlencoder". I have These files: WEB-INF/classes/HtmlEncoderTag.jar ,with a java code like this: import java.io.IOException; import javax.servlet.jsp.JspException; ...
0
votes
1answer
96 views

Django template tag to output images from model

I am new to Django and just started working on my first project. i have a mode located at common.utils.abstact_models.py: class PhotoModel(BaseModel): submitted_by = models.ForeignKey(User) ...
0
votes
0answers
73 views

How to invoke an actionListener using a custom tag

I'm migrating from jsf1.x to jsf2.1. I had facelets custom tags that look like (simplified) <ui:composition> <h:column rendered="${rendered}"> <f:facet ...
0
votes
1answer
397 views

JSP/JSTL: Passing a Collection to a Custom Tag

I'm trying to implement a custom JSP tag that accepts as an attribute a Collection of objects and outputs them as a JSON-formatted array (each object in the Collection provides a getJsonString() ...
0
votes
1answer
120 views

Javadoc for custom tags in JSP

I am creating a custom JSP tag using a class which extends TagSupport and a tld. I want to create a javadoc such that when a designer uses these tags, like for example in eclipse, on ctrl+space (in ...
0
votes
1answer
246 views

custom tag ckeditor error

Just started using ckeditor and got a little problem. On a button click outside the editor a tag is generated and then inserted into the ckeditor using the following code: ...
0
votes
0answers
50 views

Access one tag's variable in another

I have a custom tag <%@ tag body-content="scriptless"%> <% MyClass mc = request.getAttribute("someValue"); %> Now I want to access this mc value in another tag. The above tag ...
0
votes
2answers
95 views

Using a Custom Tag Variable from Outside of a Custom Tag

Ok, I thought this would be simple but I'm getting an error telling me the variable does not exist. Here is my custom tag code: <cfset isBot = false> <cfif find("bot", ...
0
votes
1answer
183 views

wordpress custom tag get_post_meta(),how to retrieve several posts at a time?

I am trying to customize a wordpress plugin,where custom tag "get_post_meta()" is used. The code is as follows: <?php query_posts('showposts=5'); ?> <?php if (have_posts()) : while ...
0
votes
5answers
339 views

Rails 3 with Liquid Custom Tags not found

I am trying to create a set of custom tags for some liquid templates using Rails 3. I added a 'liquid_tags.rb' in my lib/ directory with content like this: class UserControls < Liquid::Tag ...
0
votes
2answers
197 views

Why does this PrettyTime custom tag produce 11 lines of blank text before the “pretty” date in the HTML output?

<%@ tag language="java" pageEncoding="utf-8" isELIgnored="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" ...
0
votes
1answer
447 views

facelet composition control (custom tag) with binding

I'm having problems with creating a Facelet Composition Control (= custom tag). That's the component's template (numberinput.jspx). I declared the in my custom-taglib.xml. So far the inclusion ...
0
votes
1answer
98 views

Can I define a jsp custom tag to extend a standard html tag?

For example: <c:a href="/myurl" style="margin: 5px;" addJsessionId="true" logEvent="true"> click here</c:a> such that: 1) all standard attributes of (style) are propagated as is. ...
0
votes
1answer
71 views

Custom JSP Tag processor is caching a dated property, so the page shows old data and don't update, how to avoid this?

I made a custom jsp tag that search a historical value on a database an render it on the page. The attributes that the tag requires are the variable name and the date. The problem is that the 'date' ...
0
votes
1answer
354 views

Why won't my Facelets loop variable go out of scope?

I know this looks like a lot of text, but I think it's a pretty simple concept I'm missing. I'm writing a web application with Facelets. I've got a custom tag rq:request-list that takes a list of ...
0
votes
1answer
282 views

Problem in Custom tag in JSP

Hi i have a custom tag in JSP <dc:drawMultiSelect availableLabel='<%=request.getAttribute("availableCoreColumn").toString()%>' ...
0
votes
5answers
1k views

JSP Custom Tags: Is it possible to have a more than start / close tags?

After using the Django template language, I really miss being able to do things like this: {% if condition %} <!-- snip --> {% else %} <!-- snip --> {% endif %} When I am using ...
0
votes
1answer
124 views

implementing a “window manager” for HTML in a JSP custom tag

I have a problem: I need to build a custom tag, which can take its child tags (each of which will render as an HTML widget of some sort) and render them into the page in some intelligent manner. ...
0
votes
2answers
688 views

Embedded custom-tag in dynamic content (nested tag) not rendering

Embedded custom-tag in dynamic content (nested tag) not rendering. I have a page that pulls dynamic content from a javabean and passes the list of objects to a custom tag for processing into html. ...
-5
votes
0answers
47 views

javascript parameter to custom tag in Django

I would like to know if it is possible to pass the result of a javascript function as a paramter to a custom tag in Django. What I want to do is pass the value of a element as an argument to my tag, ...