{"id":13519230,"url":"https://github.com/rstaib/jquery-bootgrid","last_synced_at":"2025-05-14T22:09:11.607Z","repository":{"id":16447541,"uuid":"19199323","full_name":"rstaib/jquery-bootgrid","owner":"rstaib","description":"Nice, sleek and intuitive. A grid control especially designed for bootstrap.","archived":false,"fork":false,"pushed_at":"2023-08-07T04:48:57.000Z","size":4027,"stargazers_count":974,"open_issues_count":287,"forks_count":360,"subscribers_count":85,"default_branch":"master","last_synced_at":"2025-05-11T00:02:01.575Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.jquery-bootgrid.com","language":"JavaScript","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/rstaib.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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":"2014-04-27T08:19:45.000Z","updated_at":"2025-03-04T09:01:04.000Z","dependencies_parsed_at":"2024-05-04T05:33:56.567Z","dependency_job_id":"06857c29-9678-4a29-9854-3ee8ea8eaf6f","html_url":"https://github.com/rstaib/jquery-bootgrid","commit_stats":{"total_commits":101,"total_committers":4,"mean_commits":25.25,"dds":0.02970297029702973,"last_synced_commit":"ada3cee7feb3259d90f8cbab6d630214cfa16b5e"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstaib%2Fjquery-bootgrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstaib%2Fjquery-bootgrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstaib%2Fjquery-bootgrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstaib%2Fjquery-bootgrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rstaib","download_url":"https://codeload.github.com/rstaib/jquery-bootgrid/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254235701,"owners_count":22036964,"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":"2024-08-01T05:01:56.084Z","updated_at":"2025-05-14T22:09:11.572Z","avatar_url":"https://github.com/rstaib.png","language":"JavaScript","readme":"﻿jQuery Bootgrid Plugin [![Build Status](http://img.shields.io/travis/rstaib/jquery-bootgrid/master.svg?style=flat-square)](https://travis-ci.org/rstaib/jquery-bootgrid) ![Bower version](http://img.shields.io/bower/v/jquery.bootgrid.svg?style=flat-square) ![NuGet version](http://img.shields.io/nuget/v/jquery.bootgrid.svg?style=flat-square) ![NPM version](http://img.shields.io/npm/v/jquery-bootgrid.svg?style=flat-square) ![Gratipay](http://img.shields.io/gratipay/RafaelStaib.svg?style=flat-square)\n============\n\nNice, sleek and intuitive. A grid control especially designed for bootstrap.\n\n## Getting Started\n\n**jQuery Bootgrid** is a UI component written for **jQuery** and **Bootstrap** (Bootstrap isn't necessarily required).\n\nEverything you need to start quickly is:\n\n1. Include **jQuery**, **jQuery Bootgrid** and **Bootstrap** libraries in your HTML code.\n2. Define your table layout and your data columns by adding the `data-column-id` attribute.\n3. Specify your data URL used to fill your data table and set ajax option to `true` directly on your table via data API.\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n    \u003chead\u003e\n        \u003ctitle\u003eDemo\u003c/title\u003e\n        \u003cmeta charset=\"utf-8\"\u003e\n        \u003c!-- Styles --\u003e\n        \u003clink href=\"bootstrap.css\" rel=\"stylesheet\"\u003e\n        \u003clink href=\"jquery.bootgrid.css\" rel=\"stylesheet\"\u003e\n    \u003c/head\u003e\n    \u003cbody\u003e\n        \u003ctable id=\"grid\" data-toggle=\"bootgrid\" data-ajax=\"true\" data-url=\"/api/data/basic\" class=\"table table-condensed table-hover table-striped\"\u003e\n            \u003cthead\u003e\n                \u003ctr\u003e\n                    \u003cth data-column-id=\"id\"\u003eID\u003c/th\u003e\n                    \u003cth data-column-id=\"name\"\u003eSender\u003c/th\u003e\n                \u003c/tr\u003e\n            \u003c/thead\u003e\n        \u003c/table\u003e\n        \u003c!-- Scripts --\u003e\n        \u003cscript src=\"jquery.js\"\u003e\u003c/script\u003e \n        \u003cscript src=\"jquery.bootgrid.js\"\u003e\u003c/script\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n```\n\n\u003e For more information [check the documentation](http://www.jquery-bootgrid.com/Documentation).\n\n### Examples\n\nExamples you find [here](http://www.jquery-bootgrid.com/Examples).\n\n## Reporting an Issue\n\nInstructions will follow soon!\n\n## Asking questions\n\nI'm always happy to help answer your questions. The best way to get quick answers is to go to [stackoverflow.com](http://stackoverflow.com) and tag your questions always with **jquery-bootgrid**.\n\n## Contributing\n\nInstructions will follow soon!\n\n## License\n\nCopyright (c) 2014-2015 Rafael J. Staib Licensed under the [MIT license](https://github.com/rstaib/jquery-bootgrid/blob/master/LICENSE.txt).\n","funding_links":[],"categories":["JavaScript","22. 文档/表格/PDF ##","22. 文档/表格/PDF","Animation"],"sub_categories":["13.20 视差滚动(Parallax Scrolling) ###","13.20 视差滚动(Parallax Scrolling)","Tables"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstaib%2Fjquery-bootgrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frstaib%2Fjquery-bootgrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstaib%2Fjquery-bootgrid/lists"}