We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f8f5b7 + dc42063 commit 3ca0080Copy full SHA for 3ca0080
adminforth/documentation/docs/tutorial/07-Plugins/19-user-soft-delete.md renamed to adminforth/documentation/docs/tutorial/07-Plugins/20-user-soft-delete.md
adminforth/documentation/docs/tutorial/07-Plugins/21-clone-row.md
@@ -0,0 +1,32 @@
1
+# Clone row
2
+
3
+Allows to create a copy of record quickly, by substituting default values to create form
4
5
6
+## Instalation
7
8
+To install the plugin:
9
10
+```bash
11
+npm install @adminforth/clone-row --save
12
+```
13
14
+## Setting up
15
16
+To setup the plugin just add it to your resource:
17
18
+```ts .title="./resources/apartments.ts"
19
+import CloneRow from "@adminforth/CloneRow";
20
21
+ ...
22
23
+plugins: [
24
25
26
+//diff-add
27
+ new CloneRow({}),
28
29
30
+]
31
32
0 commit comments