toArray

The toArray() function converts a tableLens object or a delimited string to a JavaScript Array.

toArray(tableLens);

toArray(delimString);

e.g., var a = toArray(Table1.tableLens);

      var a = toArray('1,2,3');

You can use the returned JavaScript Array to access table data in the usual fashion:

e.g., a[1][2] is the data in 2nd row, 3rd column

<< inArray © 1996-2013 InetSoft Technology Corporation (v11.5) rowList >>