Skip to content

Eidos File basics

PartMeaning
TableA typed collection of records, such as Tasks or Books
FieldA property shared by records, such as Status, Due date, or Rating
RecordOne row with a stable identity
ViewA saved presentation of a table, including visible fields, filters, sorts, and view properties

Grid, Gallery, and Kanban are views over the same records. Editing a record in one view changes the record, so the result is visible in every other view.

In the Web Editor, choose New or a template. In the CLI, create the first table as part of the file command:

Terminal window
eidos create tasks.eidos \
--title Tasks \
--table Tasks \
--label-field Title \
--fields '[{"name":"Title","type":"text"},{"name":"Priority","type":"select"}]'

Every table has one record-label field. This is the human-readable value Eidos uses when another table refers to the record.

A view remembers its filters, sort order, visible fields, and layout. Search is temporary: clearing the search box returns to the saved view.