vote up 1 vote down star

This displays nothing:

$Articles:{ $if(i!=1)$ display in between articles $endif$ $it.Text
}

This displays as expected

$Articles:{ display in between articles $it.Text
}

Any ideas on how to get this working?

flag

2 Answers

vote up 0 vote down

here, it says that $if tests for the presence of an attribute or evaluates a boolean expr. The only operator allowed is !(NOT),
so maybe you can define a boolean variable = (i!=1) and use it in the $if statement.

link|flag
yeah I saw that, don't know how I can create a boolean value within a loop as a global one would be no use to me. The i value represents the current iteration. – Stephen lacy Oct 15 at 14:31
vote up 0 vote down

Hi. you need to compute all expressions and push into the template. You are clearly filtering, which shoul be done in the model not the view. Please see:

http://www.cs.usfca.edu/~parrt/papers/mvc.templates.pdf

Terence

link|flag

Your Answer

Get an OpenID
or

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