{"id":41933363,"url":"https://github.com/romixlab/egui_tabular","last_synced_at":"2026-01-25T18:03:57.020Z","repository":{"id":223039640,"uuid":"759055247","full_name":"romixlab/egui_tabular","owner":"romixlab","description":"Table viewer and editor for egui","archived":false,"fork":false,"pushed_at":"2025-10-08T20:12:49.000Z","size":341,"stargazers_count":11,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-11T12:18:20.312Z","etag":null,"topics":["egui","gui","imgui","rust","ui"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/romixlab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-17T18:38:36.000Z","updated_at":"2025-10-08T20:12:53.000Z","dependencies_parsed_at":"2024-03-23T20:21:40.124Z","dependency_job_id":"0e26fb3c-f886-4e44-a40e-f94f79317b26","html_url":"https://github.com/romixlab/egui_tabular","commit_stats":null,"previous_names":["romixlab/egui_tabular"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/romixlab/egui_tabular","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romixlab%2Fegui_tabular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romixlab%2Fegui_tabular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romixlab%2Fegui_tabular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romixlab%2Fegui_tabular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/romixlab","download_url":"https://codeload.github.com/romixlab/egui_tabular/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romixlab%2Fegui_tabular/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28756432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["egui","gui","imgui","rust","ui"],"created_at":"2026-01-25T18:03:56.965Z","updated_at":"2026-01-25T18:03:57.014Z","avatar_url":"https://github.com/romixlab.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"TODO: Add crates and docs badge\n\n# Customizable egui table viewer and editor.\n\nFast and responsive table viewer and editor, that only shows visible rows. Data backend is fully generic,\nallowing implementations based on vectors, files, databases and other data structures.\n\nTODO: Add web demo.\n\n## Features\n\n* [x] Cells UI and table information is provided through the [TableBackend](src/backend.rs) trait.\n* [x] Custom cell viewer and editor ui, any egui or user widgets can be used.\n* [x] Built-in cell viewers and editors through [VariantBackend](src/backends/variant.rs):\n    * [x] String, string list, numbers, booleans, custom enums\n    * [ ] Date, SI values, currency\n* [x] Data import with automatic column mapping based on names.\n    * [x] CSV support.\n    * [ ] XLS support.\n* [x] Manual column mapping to one of the choices provided by the backend (combo box above columns).\n* [ ] Undo / Redo support.\n* [x] No need to keep all data in memory (if backend supports it).\n* [ ] Support for sorting.\n* [ ] Support for filtering based on custom user ui from the TableBackend trait.\n* [x] Keyboard shortcuts and navigation.\n* [x] Copy-paste support for cells and blocks of cells.\n* [x] Ability to add lints to cells and change their background color.\n    * [ ] Add icons\n* [x] Support for cells with varying heights.\n* [x] Drag\u0026drop column reordering.\n* [x] Export to CSV.\n* [ ] Stick to bottom mode for viewing real time data.\n* [x] Visual state can be persisted on disk.\n* [x] Disable/enable rows and columns (show a hatch pattern when disabled).\n* [x] Change a column type and try to turn data into requested type (VariantBackend, only from code now).\n* [x] Derive macro to show Vec\u003cUserRowStruct\u003e as table.\n\n## Non-goals\n\n* Become Excel or G.Sheets replacement.\n\n## Potential features\n\n* Export to XLS / XLSX\n\n## Keyboard shortcuts\n\n* Ctrl+V - paste block\n* Ctrl+C - copy block\n* Ctrl+A - select all (when not editing)\n* Tab - commit edit and edit cell to the right\n* E - edit cell\n* Esc - cancel edit or unselect\n* Left, Right, Up, Down - move selection\n    * +Shift - expand selection\n* N - append new row\n* Shift + click - expand selection\n\n## Project status\n\nExperimental — many of the essential features are implemented, but documentation is incomplete and examples are absent.\n\n## Alternatives\n\nThis project borrows some ideas from the great [egui-data-table](https://github.com/kang-sw/egui-data-table).\nCheck it out if you don't need CSV/XLS import with column mapping or want to show some data based on a vector.\nThe idea behind TableBackend trait in this crate is to allow more advanced data retrieval, for example from a database.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromixlab%2Fegui_tabular","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromixlab%2Fegui_tabular","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromixlab%2Fegui_tabular/lists"}