Apogee v0.8.8 - Getting Started
  • Apogee v0.8.8 - Getting Started
  • Tutorials - Basics
    • Populating a Data Table
    • Data Views in a Data Table
    • Defining Functions
    • Folders and Scope
    • "Immutable" Values Gotcha
    • Debugging
    • Reusing Code
    • The Messenger, and Functional Programming
  • Tutorials - More Components
    • Configurable Form Components
      • Dynamic Form
      • Form Data Table
    • External Libraries and Controls
    • Custom Components
      • Custom Component
      • Custom Data Component
    • Folder Functions
    • Roll Your Own Components
  • Additional Apogee Videos
    • What is Apogee? An Overview
  • Additional Example Workspaces
    • The Grid and Spreadsheets
    • Combined Example
Powered by GitBook
On this page

Was this helpful?

  1. Tutorials - Basics

Data Views in a Data Table

This tutorial shows the data views for a data table

PreviousPopulating a Data TableNextDefining Functions

Last updated 6 years ago

Was this helpful?

Example workspace:

The workspace linked above contains four tables, with different data views. To set the data view, you select from the "Data View" dropdown on the properties dialog box, either when creating the table or when you edit the properties of the table.

The data view selected does not affect the value or internal mechanics of the table, other than how the value is presented.

  • gridTable - This is a data table with the view set to Grid. It shows the value of the table in a grid, like a spreadsheet. This makes it easy to paste in value from a spreadsheet, or copy values to a spreadsheet.

  • jsonOfGridTable - This is a data table with a standard JSON view (colorized). The formula gives it the same value as gridTable. This shows you the JSON structure of the value. Here it is an array of arrays.

  • textDataTable - This is a data table with the view set to Text Data. This is good when you want to work with text and not format it like a JSON.

  • jsonOfGridTable - This is a data table with a standard JSON view (colorized). The formula gives it the same value as textDataTable. This shows you the JSON structure of the value. Here it is the text value with start and end quotes, and proper escaping inside.

You can also change the data view of any table by going to "Edit Properties" (click on the icon in the table upper left to get the menu) to see the different views of the data for a given table.

Data View Example Workspace