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

« Previous Version 4 Next »

Overview

Returns the all rows in javascript array.

Array<DataRow> myDataTable.Rows()

Example

Basic Usage

var rows = myTable.Rows();

Example

Convert column to value array

var idValues = myTable.Rows().map(function () {
    return this.Id;
});
  • No labels