Skip to content

Custom HTML In Form

Example

let dbMasterConfig: T.IDBMasterConfig = {
    form: {
        fields: [
            [{
                control: T.EDBMasterFormControl.customHTML,
                customHTMLSettings: {
                    htmlCode: `
                        <h1 style="margin: 0;">Hello world</h1>
                    `
                }
            }]
        ]
    }
};

Interface Documentation

customHTMLSettings_generated