vote up 2 vote down star

Hello,

I've just started using StringTemplate in my C# project. I went through the documentation, but I can't seem to find a way to implement this simple scenario:

I have a list of simple business objects (let's say Orders) and I want them displayed inside a UL tag inside my html template.

So, my .st template looks like this (pseudo-code):

<html> some text <ul>[Order template]<li>[Order name here]</li>[/Order template]</ul></html>

and I want my output to be:

<html> some text <ul><li>Order 1</li><li>Order 2</li>...</ul></html>

I can't figure out how to make this work using StringTemplate. Any ideas?

flag

1 Answer

vote up 3 vote down check

You should use the following syntax:

<ul>
    $orders: {order|
        <li>Order $order.OrderId$</li>
    }$
</ul>

The documentation about this feature is really hard to find, I found some info here (search for the pipe symbol |).

link|flag
Thank you sir, that solved my problem. – Alt_Doru May 11 at 11:54
You're welcome :) – rwwilden May 11 at 12:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.