Introduction

The DataRow API provides a comprehensive toolkit for working with DataRows, the fundamental building blocks of our data structures.

DataRows are used to represent individual records within a larger dataset, allowing for efficient data handling and manipulation.

DataRow Structure

A DataRow has the following attributes:

DataRow Methods

Some key methods:

Example

Let's create a simple DataRow:


    import { DataRow } from './DataRow';

    const myDataRow = DataRow({
      ID: '12345',
      Name: 'John Doe',
      Data: {
        Description: 'My first DataRow',
        Value: 123
      },
      Timestamp: new Date(),
      ParentID: '123'
    });
    
Example Usage Link to Documentation

The `DataRow` object contains the essential attributes to represent a single data point.

Resources

See the full documentation here:

``` ```css /* style.css */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; line-height: 1.6; } header { background-color: #222; color: #fff; padding: 20px; text-align: center; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } nav a { color: #fff; text-decoration: none; margin: 0 10px; border-bottom: 1px solid #eee; padding: 10px 15px; border-radius: 5px; } main { padding: 20px; } section { margin-bottom: 20px; } .data-row-example { border: 1px solid #ccc; padding: 20px; margin-bottom: 20px; background-color: #fff; border-radius: 5px; } .data-row-example h2 { color: #333; font-size: 1.2em; } .data-row-example ul { list-style: none; padding: 0; } .data-row-example li { margin-bottom: 10px; } .data-row-example a { text-decoration: none; color: #fff; font-weight: bold; padding: 8px 15px; border-bottom: 1px dashed #eee; } .data-row-example a:hover { background-color: #f0f0f0; } footer { background-color: #333; color: #fff; text-align: center; padding: 10px; font-size: 0.8em; }