Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is it somehow possible to pass variables to a tag call:

I mean something like this:

#{plotGraph 
                    name:'${name}',
                    yAxis:'mA',
                    [...] 
/}

I get following error:

... does not compile : #{plotGraph} is not closed.
share|improve this question

1 Answer

My immediate remark without thinking and reading your real problem: If you just use the variable name itself, doesn't it work?

#{plotGraph 
                    name:name,
                    yAxis:'mA',
                    [...] 
/}
share|improve this answer
Thanks it works. How could I have missed only the most obvious combination :(, but I'm still new to this groovy stuff.. – hsuh May 2 '11 at 16:13
I certainly did the same thing when I began Play! so you're not alone :) – mandubian May 2 '11 at 16:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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