Skip to content

Divider Form Control

Example

let dbMasterConfig: T.IDBMasterConfig = {
    form: {
        fields: [
            [{
                control: T.EDBMasterFormControl.divider,
                dividerSettings: {
                    align: 'top',
                    type: 'solid',
                    dividerText: 'General Settings',
                    // style: {
                    //     color: 'red',
                    //     backgroundColor: 'yellow',
                    //     fontSize: '26px',
                    // }
                }
            }]
        ]
    }
};

Interface Documentation

dividerSettings_generated