Skip to content

Editor Form Control (v1.14.0+)

Example

let dbMasterConfig: T.IDBMasterConfig = {
    form: {
        fields: [{
            label: 'Current Address',
            control: T.EDBMasterFormControl.editor,
            path: 'current_address',
            editorSettings: {
                // formats: ['background', 'bold', 'color', 'font', 'code', 'italic', 'link', 'size', 'strike', 'script', 'underline', 'blockquote', 'header', 'indent', 'list', 'align', 'direction', 'code-block', 'image', 'video', 'clean'],
                style: {
                    height: '350px',
                }
            }
        }]
    }
};

Interface Documentation

editorSettings_generated