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

I want to access model items by index from JavaScript into a Play Framework template:

<script type="text/javascript" charset="utf-8">
    window.onload = function()
    {
        var cl = ${colors.size()};
        int i = 0;
        for (i=0;i<cl;i++)
        {
            labels = labels + "${colors.name.get(i).escapeJavaScript().raw()}";
        }
    }
</script>

My problem is that this loop throws an exception:

IndexOutOfBoundsException : Index: 12, Size: 4

Nota 0: model = Color.

Nota 1: the size is 4.

Nota 2: if I test with a fixed number instead of variable i it is ok, but this is not what I need.

Cannot get why it does not work.

share|improve this question
1  
Is there any chance you're mixing up Java and JavaScript? You're using both var and int, and assuming that the JavaScript i is available in Java. – pimvdb Oct 3 '11 at 14:28

1 Answer

up vote 3 down vote accepted

You try to use Groovy inside a Javascript loop which is wrong.

Remember your Groovy code (inside ${}) is evaluated by the Play templating on the server side and result of an HTML page returned to the client, and the Javascript is evaluated on client side (by the browser, not on your server).

maybe you want to do something like :

<script type="text/javascript" charset="utf-8">
window.onload = function()
{
    labels = [#{list colors.name}"${_.escapeJavaScript().raw()}"#{if !_isLast},#{/if}#{/list}];
}

which is still dangerous if you don't understand what it does,

prefer using a simple AJAX request and the renderJSON method for dynamic loadings.

share|improve this answer

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.