{"id":50348062,"url":"https://github.com/genieframework/stippleactivetables.jl","last_synced_at":"2026-05-29T20:01:28.175Z","repository":{"id":360070047,"uuid":"1248573321","full_name":"GenieFramework/StippleActiveTables.jl","owner":"GenieFramework","description":"Include ActiveTable in Genie/Stipple projects","archived":false,"fork":false,"pushed_at":"2026-05-24T21:13:42.000Z","size":110,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-24T22:23:01.593Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GenieFramework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-24T20:22:16.000Z","updated_at":"2026-05-24T21:13:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/GenieFramework/StippleActiveTables.jl","commit_stats":null,"previous_names":["genieframework/stippleactivetables.jl"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/GenieFramework/StippleActiveTables.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleActiveTables.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleActiveTables.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleActiveTables.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleActiveTables.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GenieFramework","download_url":"https://codeload.github.com/GenieFramework/StippleActiveTables.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleActiveTables.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33668186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-05-29T20:01:27.198Z","updated_at":"2026-05-29T20:01:28.150Z","avatar_url":"https://github.com/GenieFramework.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StippleActiveTables\n\nStippleActiveTables is a plugin for [Stipple](https://github.com/GenieFramework/Stipple.jl) that provides reactive integration with [Active-Table](https://activetable.io/), a powerful interactive table component for displaying and editing tabular data.\n\nActive-Table is a modern, fully-featured data table component with built-in support for:\n- Interactive editing\n- Column sorting and filtering\n- Data validation\n- Formula support\n- Import/Export functionality\n- And many more features\n\n## Installation\n\n```julia\nusing Pkg\nPkg.add(\"StippleActiveTables\")\n```\n\n## Features\n\n- Seamless integration between Julia DataFrames and Active-Table\n- Reactive two-way data binding with Stipple\n- Automatic synchronization of edits back to Julia\n- Simple API with minimal boilerplate\n\n## Usage\n\n### Basic Example\n\n```julia\nusing Stipple, Stipple.ReactiveTools, StippleUI\nusing StippleActiveTables\nusing DataFrames\n\n# Create a sample DataFrame\ndf = DataFrame(\n    team1 = [\"Team A\", \"Team B\"],\n    team2 = [\"Team C\", \"Team D\"],\n    score1 = [85, 90],\n    score2 = [80, 95]\n)\n\n@app MyApp begin\n    @in activetable = ActiveTable(df)\nend\n\n@deps MyApp StippleActiveTables\n\nui() = htmldiv([\n    h3(style = \"margin-bottom: 1em\", \"StippleActiveTables Demo\")\n    activetable(:activetable)\n])\n\n@page(\"/\", ui, model = MyApp)\n\nup()\n```\n\n## API\n\n### Types\n\n**`ActiveTable`**\n```julia\nActiveTable(df::DataFrame)\n```\nWraps a DataFrame to make it compatible with the Active-Table component. The data is automatically synchronized between Julia and the browser.\n\n### Functions\n\n**`activetable(data::Symbol, args...; kwargs...)`**\n\nRenders an Active-Table component bound to a reactive `ActiveTable` variable.\n\n**Arguments:**\n- `data::Symbol`: Symbol referring to an `ActiveTable` reactive variable in your model\n\n**Example:**\n```julia\n@app MyApp begin\n    @in my_table = ActiveTable(DataFrame(a=[1,2,3], b=[4,5,6]))\nend\n\nui() = activetable(:my_table)\n```\n\n## How It Works\n\nStippleActiveTables automatically handles the conversion between Julia's DataFrames and Active-Table's expected format:\n- DataFrames are serialized as a vector of rows, with column names as the first element\n- Changes made in the browser are parsed back into a DataFrame\n- The reactive binding keeps everything synchronized in real-time\n\n## Dependencies\n\n- [Stipple.jl](https://github.com/GenieFramework/Stipple.jl) - Reactive UI framework\n- [DataFrames.jl](https://github.com/JuliaData/DataFrames.jl) - Tabular data structures\n- [Active-Table](https://activetable.io/) v1.1.8 - Interactive table component (bundled)\n\n## License\n\nSee [LICENSE](LICENSE) file for details.\n\n## Author\n\nHelmut Hänsel\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenieframework%2Fstippleactivetables.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgenieframework%2Fstippleactivetables.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenieframework%2Fstippleactivetables.jl/lists"}