No description
  • JavaScript 44.5%
  • PHP 25.8%
  • Vue 14.5%
  • TypeScript 11.8%
  • Gherkin 2.9%
  • Other 0.4%
Find a file
Nextcloud bot 67608e957a
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-06-14 01:59:20 +00:00
.devcontainer fix: Use devcontainer with php v8.2 2024-12-04 09:24:19 +01:00
.github ci(ai-policy): Add AI policy check 2026-06-08 12:37:20 +02:00
.scripts
.tx
appinfo enh: update max-version to NC 35 2026-06-07 11:43:36 +01:00
build
css fix: run lint and psalm 2026-01-12 05:41:19 +00:00
cypress fix: update selector for existing table import to improve reliability 2026-06-07 11:23:07 +01:00
docs
img
l10n fix(l10n): Update translations from Transifex 2026-06-14 01:59:20 +00:00
lib fix: use max possible value and avoid using array_merge in a loop 2026-06-09 00:07:49 +02:00
LICENSES
playwright fix(playwright): enhance timeout settings and loading checks for CI environment 2026-06-07 09:44:48 +01:00
screenshots
src Revert "Enhancement: Apply user's timezone to meta fields (alternative approach)" 2026-06-07 12:37:04 +01:00
templates fix: run lint and psalm 2026-01-12 05:41:19 +00:00
tests Revert "Enhancement: Apply user's timezone to meta fields" 2026-06-07 12:37:04 +01:00
vendor-bin chore(deps): update dependency phpunit/phpunit to v9.6.34 2026-04-19 18:33:12 +02:00
.eslintignore feat(tests): Migrate from Cypress to Playwright 2026-04-01 08:16:31 +01:00
.eslintrc.cjs fix: Revert some tests back to Cypress 2026-04-01 08:16:31 +01:00
.git-blame-ignore-revs docs(git): coding-standard bump 2025-02-10 12:22:29 +01:00
.gitattributes
.gitignore fix: Revert some tests back to Cypress 2026-04-01 08:16:31 +01:00
.l10nignore
.lib-vendor-organizer.php build(scoper): fix lib-vendor-organizer run on MacOS 2025-12-05 10:48:16 +01:00
.nextcloudignore docs: Update agent info 2026-06-06 20:52:15 +01:00
.php-cs-fixer.dist.php build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
.scoper-production-dependencies build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
AGENTS.md docs(agents): Update oracle 1K IN-clause limit and solution approach 2026-06-09 00:11:38 +02:00
AUTHORS.md
babel.config.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
CHANGELOG.md chore: Update changelog 2026-06-02 09:50:15 +01:00
CLAUDE.md docs: Update agent info 2026-06-06 20:52:15 +01:00
composer.json chore(deps): update dependency nextcloud/coding-standard to ^v1.5.0 2026-05-24 15:00:57 +02:00
composer.lock chore(deps): update dependency nextcloud/coding-standard to ^v1.5.0 2026-05-24 15:00:57 +02:00
COPYING
cypress.config.mjs fix: Upgrate Cypress, split tests 2026-04-26 15:45:11 +01:00
krankerl.toml
Makefile
openapi.json fix: Avoid saving whitespace titles 2026-05-28 05:29:54 +01:00
package-lock.json Merge pull request #2694 from nextcloud/renovate/main-material-symbols-svg-400-0.x 2026-06-07 12:06:29 +01:00
package.json fix(deps): update dependency @material-symbols/svg-400 to ^0.44.10 2026-06-07 11:41:07 +01:00
phpunit.integration.xml
phpunit.xml
playwright.config.ts fix(playwright): enhance timeout settings and loading checks for CI environment 2026-06-07 09:44:48 +01:00
psalm.xml build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
README.md
renovate.json build: disable renovate for EOL 0.9 2026-04-28 21:50:06 +02:00
REUSE.toml docs: Update agent info 2026-06-06 20:52:15 +01:00
scoper.inc.php build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
stylelint.config.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
tsconfig.json fix: update tsconfig 2025-06-25 18:40:39 +01:00
update-scoper-dependencies.sh build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
vite.config.ts feat: activity support 2025-10-13 14:46:45 +01:00

Nextcloud App »Tables«

REUSE status

Manage data the way you need it.

With this app you are able to create your own tables with individual columns. You can start with a template or from scratch and add your wanted columns.

Documentation

General information

https://github.com/nextcloud/tables/wiki

Administration

https://github.com/nextcloud/tables/wiki/Administration

API

https://github.com/nextcloud/tables/wiki/API

Developer information

https://github.com/nextcloud/tables/wiki/Developing

Installation/Update

The app can be installed through the app store within Nextcloud. You can also download the latest release from the release page.

Install from source code

To build you will need to have Node.js and Composer installed.

  • Clone repository into the app-directory: cd /path/to/apps && git clone https://github.com/nextcloud/tables && cd tables
  • Install PHP dependencies: composer install --no-dev
  • Install JS dependencies: npm ci
  • Build JavaScript for the frontend
    • Development build npm run dev or
    • Watch for changes npm run watch or
    • Production build npm run build