BatchDataCellSet.cells Property

Gets the cell for the specified column and row ordinal. Usage is cells[columnOrdinal][rowOrdinal]. See Dundas.BI.WebApi.Models.DataCellData for return structure.
 

Property Value

Type: Array
    Element Type: Array
    Element Value may be null.

 Each cell object contained within the arrays can have properties:
     annotations         [type: Array, elementType: dundas.data.Annotation]      - Gets annotations or notes for this cell.
     columnTupleOrdinal  [type: Number, integer: true]                           - Gets the column tuple ordinal (index).
     formatString        [type: String, mayBeNull: true]                         - Gets the format string.
     formattedValue      [type: String, mayBeNull: true]                         - Gets the formatted value.
     isInError           [type: Boolean, mayBeNull: true]                        - Gets a value indicating whether there were errors when retrieving the cell data.
     isMissingData       [type: Boolean, mayBeNull: true]                        - Gets a value indicating whether the cell represents missing data.
     properties          [type: Array, elementType: dundas.data.DataProperty]    - Gets the miscellaneous properties.
     rowTupleOrdinal     [type: Number, integer: true]                           - Gets the row tuple ordinal (index).
     value               [type: Number, mayBeNull: true]                         - Gets the numeric value.
 
 

Remarks

The cellset must contain the data as returned by the server in response to the request and must not be modified in script.