We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
confirmationFactory().disable()
1 parent 1a81786 commit f8219a8Copy full SHA for f8219a8
1 file changed
docs/javascript/components_confirmation.md
@@ -103,6 +103,17 @@ if (result) {
103
}
104
```
105
106
+### Disable
107
+
108
+Disable an object:
109
110
+```ts
111
+const result = await confirmationFactory().disable(theObjectName);
112
+if (result) {
113
+ console.log("The user has requested to disable the object.");
114
+}
115
+```
116
117
## Custom Confirmation Prompts
118
119
The `custom()` permits a custom confirmation dialog with a user-defined dialog content.
0 commit comments