WEEEEEEEEEEEEEEEEEEEEEEEE por fin!!!!!!!!!!!
 
Cogiendo los datos por separadao en diferentes arrays, si me que va!!!! Seria asi:   
Código Javascript
:
Ver original<g:javascript>
        var tempArr0 = new Array();
        var tempArr1 = new Array();
        var tempArr2 = new Array();
        var tempArr3 = new Array();
        var tempArr4 = new Array();
        var tempArr5 = new Array();
        var tempArr6 = new Array();
        var tempArr7 = new Array();
        
        <g:each in="${list}" status="x" var="item" >
            tempArr0[${x}]= "${item.getHoras()}";
        </g:each>
        <g:each in="${list}" status="x" var="item" >
            tempArr1[${x}]= "${item.getMinutos()}";
        </g:each>
        <g:each in="${list}" status="x" var="item" >
            tempArr2[${x}]= "${item.getSegundos()}";
        </g:each>
        <g:each in="${list}" status="x" var="item" >
            tempArr3[${x}]= "${item.getTipo()}";
        </g:each>
        <g:each in="${list}" status="x" var="item" >
            tempArr4[${x}]= "${item.getNumero()}";
        </g:each>
        <g:each in="${list}" status="x" var="item" >
            tempArr5[${x}]= "${item.getNombre1()}";
        </g:each>
        <g:each in="${list}" status="x" var="item" >
            tempArr6[${x}]= "${item.getNombre2()}";
        </g:each>
        <g:each in="${list}" status="x" var="item" >
            tempArr7[${x}]= "${item.getComentarios()}";
        </g:each>
        
</g:javascript>