1 Reply Latest reply on Apr 17, 2007 6:11 PM by shane.bryzak

    seam remoting js->bag multiple dimension prob

    livenow

      Hi,

      there seems to be an error when passing multidimensional Arrays from Javascript to a webRemote function.

      js:
      var csArr = new Array();
      csArr[0] = 1;

      converts without problems to:
      ArrayList ssArr

      but

      js:
      var csArr = new Array();
      csArr[0] = new Array();
      csArr[0][0] = 11;

      is always empty on Serverside (although the seam-debugger shows that the array is transfered correctly)

      also tried it out with HashSet and [] -> same result

      regards,
      Christoph