Tagged Questions
0
votes
0answers
34 views
Populating Drop Down list using macro velocity
i am having four timezone maps referring to each timezones like PST, CST, EST and MST.
I have to populate the drop down list with time using macro and vm file.
can anyone guide me how to invoke ...
0
votes
0answers
32 views
How to access properties of an object with dynamic macros in Velocity templates
I have a velocity template defined as follows:
#macro(aMacro $par1)
$par1
$par1.id
#end
##dynamic macro call
====================
#set($macroName = "aMacro")
#set( $call = "#$macroName('$p1')" ...
1
vote
1answer
33 views
Macro Signature Not Honored by Velocity Engine
How can I enable Velocity engine to honor #macro signatures so that if I try calling a macro in templates Example:
#myTestMacro($arg1 $arg2)
that has a different signature when defined Example:
...
1
vote
1answer
247 views
Creating JIRA search request excel view plugin and velocimacro to format output
I need to create a search request excel view plugin where the output is a list of issues under certain headings which are grouped by Issue Type. So far I have a plugin module project etc, so what I ...
0
votes
1answer
389 views
Getting an error while writing a custom velocity macro
When creating my own macro, and trying to add it so that anyone can use it, I get the following error:
Error number 4001 in 4: Error while parsing velocity page /templates/docdoesnotexist.vm
...
0
votes
2answers
140 views
using Velocity Macro to create UI Component
Is It a good Idea to use velocity macro to create UI components,
what's about performance and code maintability
for example, in place of
<input type="text" name="$name" value="$value" />
we ...
3
votes
4answers
2k views
Velocity Template auto-reload doesn't work
I want to reload velocity template as it's changed. For this I've set the followings, but reload doesn't work when I manually change a .vm file inside META-INF/template/ .
...
0
votes
1answer
236 views
Use Velocity macros to render page content dynamically
I am new to Velocity. I have a requirement as follows.
I have a dropdown in jsp page with the following values.
1 Normal
2 Reverse
If I select 1, then the properties for Normal Auction should be ...
4
votes
1answer
610 views
Velocity: Is it better to use a Velocity Macro or #include(…) statement for a DIV block repeated many times on different pages?
I have about 10 standard blocks of dynamically generated HTML that get included on a large percentage of pages on my site (informational sidebars).
I can use #include statements or define them as a ...
3
votes
2answers
1k views
New Line in velocity set directive
How do you append a newline in velocity template using set? This does not work.
#(set $some = "$a \n $b")
Prints literally \n.
Doing this also does not work :
VelocityContext context = new ...
0
votes
2answers
308 views
Append # at the beggining of a string generated by a velocity macro
Does anybody know how to get a velocity macro to run when it's prepended by an Octothorpe?
I have a velocity macro called #macro(getUniqueID $id)
And I want to use it to spit out an id to be used ...
1
vote
1answer
2k views
Velocity named parameters for a macro
I have a macro taking several parameters. Some of these are optional and if a parameter is left empty it will replaced with default.
Now the question is how to make this as easy as possible for ...