SpreadJS Documentation
getDataItem Method
The row index.
Gets the data item.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: Object
value = instance.getDataItem(row);
function getDataItem( 
   row : number
) : Object;

Parameters

row
The row index.

Return Value

The row data.
Example
This example uses the getDataItem method.
var test = [
                { "Series0": 2, "Series1": 1 },
                { "Series0": 4, "Series1": 2 },
                { "Series0": 3, "Series1": 4 }
            ];
activeSheet.autoGenerateColumns = true;
activeSheet.setDataSource(test, true);
alert(JSON.stringify(activeSheet.getDataItem(0)));
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.