Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ Welcome to the SeaTable Developer Manual, your comprehensive resource for levera
This guide illustrates **three fundamental approaches** to development within SeaTable:

1. [Scripting within SeaTable](/scripts/): Create custom logic or perform individual data processing using JavaScript or Python, both supported within SeaTable.
1. [SeaTable Plugins](/plugins/): Develop plugins capable of interacting with, visualizing, and operating on data within a SeaTable Base.
1. [Utilizing Any Programming Language with SeaTable's API](/clients/): Seamlessly interact with the SeaTable API to construct your own web pages or programs.
1. [SeaTable plugins](/plugins/): Develop plugins capable of interacting with, visualizing, and operating on data within a SeaTable Base.
1. [Utilizing any programming language with SeaTable's API](/clients/): Seamlessly interact with the SeaTable API to construct your own web pages or programs.

## Developer decision tree

![Image title](/media/developer_decision_tree.png){ align=left }

For guidance on choosing the right section within this manual, refer to the decision tree diagram above.

If you aim to integrate a software product with SeaTable, note that SeaTable supports multiple workflow automation tools such as [n8n](https://n8n.io/integrations/seatable/), [Zapier](https://zapier.com/apps/seatable/integrations), and [Make](https://www.make.com/en/integrations/seatable). Please refer to the [SeaTable User Manual](https://seatable.io/docs-category/skripte-api-integrationen/) for detailed information on these integrations, as they are not covered here.
If you aim to integrate a software product with SeaTable, note that SeaTable supports multiple workflow automation tools such as [n8n](https://n8n.io/integrations/seatable/), [Zapier](https://zapier.com/apps/seatable/integrations), and [Make](https://www.make.com/en/integrations/seatable). Please refer to the [SeaTable User Manual](https://seatable.com/help/integrations/) for detailed information on these integrations, as they are not covered here.

## Target audience

Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/basic_concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ You can take the following python code and copy&paste it to SeaTable. It will re

### Gallery-Plugin

SeaTable provides some Plugins to visualize your data. Examples for such a plugin are the [Gallery](https://seatable.io/docs/plugins/anleitung-zum-galerie-plugin/?lang=auto), [Timeline](https://seatable.io/docs/plugins/anleitung-zum-timeline-plugin/?lang=auto), [Kanban](https://seatable.io/docs/plugins/anleitung-zum-kanban-plugin/?lang=auto) and so on. But SeaTable has everything that you build your own plugin. There are no limits to the imagination, it just requires some time and React skills.
SeaTable provides some Plugins to visualize your data. Examples for such a plugin are the [Gallery](https://seatable.com/help/anleitung-zum-galerie-plugin/), [Timeline](https://seatable.com/help/anleitung-zum-timeline-plugin/), [Kanban](https://seatable.com/help/anleitung-zum-kanban-plugin/) and so on. But SeaTable has everything that you build your own plugin. There are no limits to the imagination, it just requires some time and React skills.

![Screenshot of the Galery Plugin](/media/gallery.png)

Expand Down
6 changes: 3 additions & 3 deletions docs/scripts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Each chapter provides you with explanations about the available objects and meth

Here are some additional help articles from the [user manual](https://help.seatable.com) explaining how to create, execute and monitor a script in SeaTable:

- [Creating and deleting a script](https://seatable.io/docs/javascript-python/anlegen-und-loeschen-eines-skriptes/?lang=auto)
- [Run script manually, by button or by automation](https://seatable.io/en/docs/javascript-python/skript-manuell-per-schaltflaeche-oder-automation-ausfuehren/?lang=auto)
- [The execution log of scripts](https://seatable.io/en/docs/javascript-python/das-ausfuehrungslog-von-skripten/?lang=auto)
- [Creating and deleting a script](https://seatable.com/help/anlegen-und-loeschen-eines-skriptes/)
- [Run script manually, by button or by automation](https://seatable.com/help/skript-manuell-per-schaltflaeche-oder-automation-ausfuehren/)
- [The execution log of scripts](https://seatable.com/help/das-ausfuehrungslog-von-skripten/)
2 changes: 1 addition & 1 deletion docs/scripts/javascript/objects/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ All available functions to interact with the tables of a SeaTable base.

!!! question "deleteTable"

Delete a table from the base. By the way, the table can be [restored from the logs](https://seatable.io/docs/arbeiten-in-tabellen/eine-geloeschte-tabelle-wiederherstellen/?lang=auto).
Delete a table from the base. By the way, the table can be [restored from the logs](https://seatable.com/help/eine-geloeschte-tabelle-wiederherstellen/).

``` js
base.deleteTable(tableName: String);
Expand Down