Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Overview

Returns the all rows in javascript array.

Array<DataRow> DataTable.Rows()

Example

Basic Usage
var rows = myTable.Rows();

Example

Convert column to value array
var idValues = myTable.Rows().map(function () {
    return this.Id;
});

Examples

Basic Usage
var rows = myTable.Rows();
Convert column to value array
var idValues = myTable.Rows().map(function () {
    return this.Id;
});
  • No labels