Eugenio Romano 3dc92beeb9
Review documentation plus some tools fix (#5100)
* review 3.5.0 doc

* fix documentation

* fix documentation

* fix documentation
2019-09-26 10:27:04 +01:00

33 lines
638 B
Markdown

---
Title: Edit JSON Dialog
Added: v3.5.0
Status: Active
Last reviewed: 2019-09-17
---
# [Edit JSON Dialog](../../../ "Defined in ")
Allows a user to preview or edit a JSON content in a dialog.
## Basic usage
```ts
import { EditJsonDialogSettings, EditJsonDialogComponent } from '@alfresco/adf-core';
const settings: EditJsonDialogSettings = {
title: 'Edit Json',
editable: true,
value: `{ "hello": "world" }`
};
this.dialog.open(EditJsonDialogComponent, {
data: settings,
minWidth: '50%',
minHeight: '50%'
})
.afterClosed()
.subscribe((value: string) => {
// do something with the updated value
});
```