Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.4 KB

File metadata and controls

48 lines (33 loc) · 1.4 KB

Data Editing

Viewing data

  • Double-click a table in the sidebar to open it
  • Or right-click → "Open in New Tab"
  • Data loads with automatic pagination (1000 rows per page)
  • Sort by clicking column headers
  • Filter with the GUI filter builder

Editing cells

  1. Double-click a cell to enter edit mode
  2. Type the new value
  3. Press Enter to confirm, Escape to cancel
  4. Press Tab to move to the next column
  5. Modified cells show a colored indicator

Inserting rows

  1. Right-click any cell or row number → "Insert Row"
  2. New row appears at the top with green "+" marker
  3. Click each cell to enter values
  4. Press Cmd/Ctrl+S or click "Save Changes" to commit

Deleting rows

  1. Click a row number to select the row
  2. Right-click → "Delete Row"
  3. Deleted rows show a red strikethrough
  4. Press Cmd/Ctrl+S to commit the deletion

Saving changes

All changes (edits, inserts, deletes) are batched and executed in a single transaction:

  • Save: Cmd/Ctrl+S or click "Save Changes"
  • Discard: Click "Discard" to revert all pending changes
  • Undo/Redo: Cmd/Ctrl+Z / Cmd/Ctrl+Shift+Z

Foreign key navigation

Right-click a cell in a foreign key column → click the "→ table.column" link to jump to the referenced row in a new tab.

Requirements

  • Table must have a primary key for editing (Tabloy uses PK in WHERE clause)
  • Tables without primary keys are read-only