Tagged Questions
The custom-tags tag has no wiki summary.
5
votes
3answers
796 views
Cannot find CFML template for custom tag
I am not a ColdFusion coder. Doing a favor for a friend who ported his CF site from a Windows server to Unix on GoDaddy.
Site is displaying error:
Cannot find CFML template for custom tag jstk. ...
3
votes
3answers
262 views
PHP - templating with custom tags - is this a legit use of eval?
Overview
Around the end of 2009, I wrote a simple templating system for PHP/HTML to be used in-house by our designers for brochure-ware type websites. The goal of the system is to allow templating in ...
1
vote
1answer
129 views
Cannot access implict object from within method in custom JSP tag file
I'm attempting to create a custom jsp tag. Everything is working fine, except for the fact that I the request seems to be out-of-scope for my custom function.
Here is the relevant bit from the .tag ...
1
vote
2answers
2k views
Why doesn't the jQuery .html() method work with custom tags in IE8?
I have the following html code:
<mytag>
Just Some Text
</mytag>
And I have this jQuery command
$('mytag').each(function () { alert($(this).html()); });
In all browsers except ...
1
vote
1answer
86 views
Is there a way to define 'javadoc types' - custom parameters for members?
The use case I can think of is the following:
In a typical application, there are usually many members of a certain category, e.g., a web application contains many constants attribute keys, Action ...
0
votes
2answers
51 views
Custom HTML Tags in PHP
When I was playing around with Joomla! source code, I saw such as code (or similar to this one, I am not pretty sure since it was a while back then):
<juc:place name="module" ...
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
1answer
139 views
JSP custom tag attribute type integer
I want to create a custom tag library but in the handler class I would like to have integer attributes.
In the tld file I have the following code:
<tag>
<name>circle</name>
...
0
votes
1answer
35 views
JSP TableTag Sorting
I'm working on a legacy system that uses JSPs. Specifically, there is a <display:table> tag that allows the user to sort the columns of data. However, when the default tag is used, it sorts only ...
0
votes
3answers
68 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
25 views
Using form info to send a custom tag a value
I'm working on an assignment for my Java EE class to learn how to use custom tags. What I'm having trouble with is this: I need to allow the user to enter a number into a form, then invoke my custom ...
0
votes
1answer
283 views
Referencing an attribute for a simple tag and Struts 2.x
I am writing a simple tag which contains 4 attributes like so:
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ attribute name="menuName" description="Name of Major Menu" required="true" %>
...
0
votes
2answers
197 views
jquery parsing custom tags strangely
I'm having problems with the following: http://jsfiddle.net/x55LD/1/
I'm trying to parse custom tags using jQuery 1.6. It's working properly, except when a tag is located within a <select> tag. ...
0
votes
1answer
399 views
Include jspf file with custom tag
How can I add jspf file to jsp page via custom tag?
In the tag support class I can add code of jspf using....
JspWriter writter = this.pageContext.getOut();
writter.append( "html code");
But what ...
0
votes
0answers
38 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. ...
0
votes
1answer
343 views
order post taxonomies alphabeticaly in wordpress?
I'm using a custom taxonomy for my posts which I print like this:
the_terms(get_the_ID(), 'sizes', '<p>', ', ', '</p>');
This works fine but it prints the terms in the order they were ...
0
votes
1answer
68 views
Is there a tag like verbatim, except you can set it to dirty?
What I would like is something like following:
<f:verbatim>
<%
out.println("<span id='test'>Data</span>");
%>
</f:verbatim>
I would like the out.println code to be rerun by ajax. ...
0
votes
1answer
164 views
Loading an hpricot element with a chunk of html
is there a way to load a chunk of html into an Hpricot::Doc object?
I am trying to parse various chunks of html within custom tags from a page.
so if I have:
<foo>
<b>here is some ...
0
votes
2answers
198 views
Django : error with custom inclusion_tag, can't find file
I'm trying to write a custom inclusion_tag in django.
Following the example on http://docs.djangoproject.com/en/dev/howto/custom-template-tags/
I'm just writing
...
-1
votes
1answer
30 views
Pre Compiling HTML files for publication as static files
I have a project whereby a large number of technical specifications are currently 'published' as HTML files. The HTML files are not hosted on a web server, but zipped up and distributed to be access ...