Tagged Questions
0
votes
1answer
19 views
Nvelocity String To Double Conversation
Hi All I'm Using Nvelocity Library and i have some problem so
i Have number 57,45 and i cant convert it to double $Convert.ToDouble($Value) returns 0.
Thanks.
0
votes
1answer
25 views
Prevent NVelocity from displaying Tokens
I have the following piece of code in my template that uses NVelocity to process form data:
$PartnerProfile.Nvalue("Name")
In case the Nvalue method doesn't return any value, I want NVelocity to ...
0
votes
1answer
104 views
Can $DateTime.Now.Year be used with NVelocity to display the current year?
Sorry that this is kind of a lazy questions...
I'm curious if $DateTime.Now.Year can be used with NVelocity templates to show the current year? Or do I need to set a variable?
2
votes
1answer
240 views
NVelocity macro parameter not evaluating
I'm looking to create an inline function (method) inside my NVelocity template. The solution to this appears to be to use Velocimacros. So, I mocked up the following template to test:
#macro( ...
1
vote
3answers
952 views
For loop in NVelocity
Does NVelocity support #for loops?
I've looked through the documentation and all I could find was the #foreach loop.
I want to loop over a 2 dimensional array.
1
vote
1answer
509 views
NVelocity (or Velocity) as a stand-alone formula evaluator
I am using NVelocity in my application to generate html emails. My application has an event-driven model, where saving and/or updating of objects causes these emails to be sent out. Each event can ...
0
votes
1answer
197 views
How to escape trailing backslash in NVelocity
I am using NVelocity to process various PowerShell scripts before they are executed against a server.
My question is how to escape a backslash trailing a variable:
e.g.
ls \\$computername\c$
...
2
votes
1answer
514 views
What is the syntax for if false in nVelocity?
What is the syntax for an not true or false if statement in nVelocity (or Velocity)?
And more importantly, where is this in the nVelocity docs? I've been Googling for quite a while to no avail.
I've ...
0
votes
1answer
129 views
Castle NVelocity Including Variables not Variable contents
I'm using Castles' NVelocity Engine to do some template work. Here's the problem. Several of my templates work fine, but one of them isn't.
#foreach($i in $Items)
<div class="grid_3 ...
0
votes
1answer
183 views
How to proper initialize the nvelocity engine?
As I saw in some examples, and tried to understand throughout the velocity site, there are three ways of initializing the velocityengine:
- With the default configurations : .Init()
- With the default ...
1
vote
2answers
1k views
Completely overwriting a file with Velocity / NVelocity
I am trying to use NVelocity templates in a .Net application: using a template to output results to a file. It all seems to work fine except for the fact that the output is never fully overwritten. If ...
