mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
708 B
708 B
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Edit JSON Dialog | v3.5.0 | Active | 2019-09-17 |
Edit JSON Dialog
Allows a user to preview or edit a JSON content in a dialog.
Basic usage
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
});