{"id":28960377,"url":"https://github.com/genieframework/stippletable.jl","last_synced_at":"2026-01-20T17:30:26.531Z","repository":{"id":271753056,"uuid":"853506325","full_name":"GenieFramework/StippleTable.jl","owner":"GenieFramework","description":"A component enhancing the Table component from StippleUI with support for for server-side pagination and filtering","archived":false,"fork":false,"pushed_at":"2025-02-03T08:09:01.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-03T21:22:35.537Z","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}},"created_at":"2024-09-06T19:45:18.000Z","updated_at":"2025-02-03T07:45:22.000Z","dependencies_parsed_at":"2025-01-13T00:01:38.195Z","dependency_job_id":null,"html_url":"https://github.com/GenieFramework/StippleTable.jl","commit_stats":null,"previous_names":["genieframework/stippletable.jl"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/GenieFramework/StippleTable.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleTable.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleTable.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleTable.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleTable.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GenieFramework","download_url":"https://codeload.github.com/GenieFramework/StippleTable.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GenieFramework%2FStippleTable.jl/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261584267,"owners_count":23180679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2025-06-24T01:12:56.129Z","updated_at":"2026-01-20T17:30:26.464Z","avatar_url":"https://github.com/GenieFramework.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StippleTable\n\nThis component enhances the Table component from StippleUI with support for for server-side pagination and filtering.\n\n## Installation\n\nTo install the most recent released version of package:\n\n```\npkg\u003e add StippleTable\n```\n \n## Usage\n\n\n\nCreate a simple `app.jl` script\n```julia\n\nmodule App\n\nusing GenieFramework\nusing DataFrames\nusing StippleTable\n@genietools\n\nStippleUI.Tables.set_default_rows_per_page(20)\nStippleUI.Tables.set_max_rows_client_side(11_000)\n\nconst big_data = sort!(DataFrame(rand(1_000_000, 2), [\"x1\", \"x2\"]))::DataFrame\n\n@app begin\n  @out dt1 = DataTable(big_data; server_side = true)\n  @out loading = false\n  @out dt2 = DataTable(big_data)\nend\n\n@event dt1_request begin\n  loading = true\n  dt1 = @paginate(dt1, big_data)\n  @push\n  loading = false\nend\n\nui() = \"\"\"\n\u003cst-table \n    :loading=\"loading\"  \n    :data_table=\"dt1\"\n    server_side_event=\"dt1_request\"\n    :dense=\"true\" \n /\u003e\n\"\"\"\n\n@page(\"/\", ui)\n\nend\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenieframework%2Fstippletable.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgenieframework%2Fstippletable.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgenieframework%2Fstippletable.jl/lists"}