{"id":15456097,"url":"https://github.com/gr2m/navigable-table","last_synced_at":"2025-12-12T04:13:14.352Z","repository":{"id":13864376,"uuid":"16562202","full_name":"gr2m/navigable-table","owner":"gr2m","description":"A Bootstrap plugin for elegant navigating along table inputs","archived":false,"fork":false,"pushed_at":"2021-03-05T06:47:58.000Z","size":651,"stargazers_count":20,"open_issues_count":2,"forks_count":11,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-22T13:24:00.034Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://gr2m.github.io/navigable-table/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gr2m.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-02-05T23:17:08.000Z","updated_at":"2024-03-21T18:28:31.000Z","dependencies_parsed_at":"2022-08-29T12:41:09.428Z","dependency_job_id":null,"html_url":"https://github.com/gr2m/navigable-table","commit_stats":null,"previous_names":["gr2m/bootstrap-navigable-table"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gr2m%2Fnavigable-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gr2m%2Fnavigable-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gr2m%2Fnavigable-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gr2m%2Fnavigable-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gr2m","download_url":"https://codeload.github.com/gr2m/navigable-table/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248199086,"owners_count":21063641,"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-10-01T22:22:38.196Z","updated_at":"2025-12-12T04:13:09.315Z","avatar_url":"https://github.com/gr2m.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Navigable Table – A jQuery plugin\n\n\u003e A jQuery plugin for elegant editing of data collections.\n\n[![Build Status](https://travis-ci.org/gr2m/navigable-table.svg)](https://travis-ci.org/gr2m/navigable-table)\n[![Dependency Status](https://david-dm.org/gr2m/navigable-table.svg)](https://david-dm.org/gr2m/navigable-table)\n[![devDependency Status](https://david-dm.org/gr2m/navigable-table/dev-status.svg)](https://david-dm.org/gr2m/navigable-table#info=devDependencies)\n\n## Download / Installation\n\nYou can download the latest JS \u0026 CSS code here:\n\n- https://npmcdn.com/navigable-table/dist/navigable-table.js\n\nOr install via [npm](https://www.npmjs.com/)\n\n```\nnpm install --save navigable-table\n```\n\nThe JS code can be required with\n\n```js\nvar jQuery = require('jquery')\nvar navigableTable = require('navigable-table')\n\n// init\nnavigableTable(jQuery)\n```\n\n## Usage\n\n```html\n\u003c!-- load jquery --\u003e\n\u003cscript src=\"jquery.js\"\u003e\u003c/script\u003e\n\n\u003c!-- load navigable-table assets --\u003e\n\u003cscript src=\"navigable-table.js\"\u003e\u003c/script\u003e\n\n\u003c!-- The data-navigable-spy attribute initializes the table on first interaction --\u003e\n\u003ctable data-navigable-spy class=\"table\"\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth\u003eName\u003c/th\u003e\n      \u003cth\u003eE-Mail\u003c/th\u003e\n      \u003cth\u003eBirthday\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003cinput name=\"name\" value=\"Raphael Saadiq\" placeholder=\"Joe Doe\"\u003e\u003c/td\u003e\n      \u003ctd\u003e\u003cinput name=\"email\" value=\"raphael@example.com\" placeholder=\"joe@example.com\" type=\"email\"\u003e\u003c/td\u003e\n      \u003ctd\u003e\u003cinput name=\"birthday\" value=\"05/14/1966\" placeholder=\"01/01/1980\" type=\"date\"\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003cinput name=\"name\" value=\"Dawn Robinson\" placeholder=\"Joe Doe\"\u003e\u003c/td\u003e\n      \u003ctd\u003e\u003cinput name=\"email\" value=\"dawn@example.com\" placeholder=\"joe@example.com\" type=\"email\"\u003e\u003c/td\u003e\n      \u003ctd\u003e\u003cinput name=\"birthday\" placeholder=\"11/24/1965\" type=\"date\"\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003cinput name=\"name\" value=\"Ali Shaheed Muhammad\" placeholder=\"Joe Doe\"\u003e\u003c/td\u003e\n      \u003ctd\u003e\u003cinput name=\"email\" value=\"ali@example.com\" placeholder=\"joe@example.com\" type=\"email\"\u003e\u003c/td\u003e\n      \u003ctd\u003e\u003cinput name=\"birthday\" placeholder=\"08/11/1970\" type=\"date\"\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n```\n\n## Events\n\n```\n// bump event when there is no column / row to jump / move to\n$table.on('bump', function(event, direction) {});\n$table.on('bump:up', function(event) {});\n$table.on('bump:down', function(event) {});\n\n// move events, when a row is moved up or down\n$table.on('move', function(event, direction, index) {});\n$table.on('move:up', function(event, index) {});\n$table.on('move:down', function(event, index) {});\n\n// move events, before a row is moved up or down.\n// The 'move' events can be preventend by calling cancelMove()\n$table.on('before:move', function(event, direction, index, cancelMove) {});\n$table.on('before:move:up', function(event, index, cancelMove) {});\n$table.on('before:move:down', function(event, index, cancelMove) {});\n```\n\n## Local Setup\n\n```bash\ngit clone git@github.com:gr2m/navigable-table.git\ncd navigable-table\nnpm install\n```\n\n## Test\n\nYou can start a local dev server with\n\n```bash\nnpm start\n```\n\nRun tests with\n\n```bash\nnpm test\n```\n\nWhile working on the tests, you can start Selenium / Chrome driver\nonce, and then tests re-run on each save\n\n```bash\nnpm run test:mocha:watch\n```\n\n## Fine Print\n\nThe Expandable Input Plugin have been authored by [Gregor Martynus](https://github.com/gr2m),\nproud member of the [Hoodie Community](http://hood.ie/).\n\nLicense: MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgr2m%2Fnavigable-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgr2m%2Fnavigable-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgr2m%2Fnavigable-table/lists"}