Products

folder: personal category: template

const config = {
    tabs: true,
    worksheets: [{
        minDimensions: [5, 5],
        worksheetName: 'Contacts',
        tableOverflow: true,
        tableWidth: '800px',
        columns: [
            {
                type: 'text',
                title: 'Name',
                width: '180px'
            },
            {
                type: 'dropdown',
                title: 'Category',
                width: '150px',
                source: ['Work', 'Family', 'Services', 'Health'],
                options: {
                    newOptions: true
                }
            },
            {
                type: 'record',
                title: 'Company',
                width: '120px',
                worksheetId: 'companies'
            },
            {
                type: 'text',
                title: 'Work Phone',
                width: '120px'
            },
            {
                type: 'text',
                title: 'Personal Phone',
                width: '120px'
            },
            {
                type: 'text',
                title: 'Home Phone',
                width: '120px'
            },
            {
                type: 'email',
                title: 'Email',
                width: '150px'
            },
            {
                type: 'calendar',
                title: 'Birthday',
                width: '120px'
            },
            {
                type: 'notes',
                title: 'Address',
                width: '150px'
            },
        ],
    },{
        minDimensions: [5, 5],
        worksheetName: 'Companies',
        columns: [
            {
                type: 'text',
                title: 'Name',
                width: '180px'
            },
            {
                type: 'dropdown',
                title: 'Category',
                width: '150px',
                source: ['Work', 'Family', 'Services', 'Health'],
                options: {
                    newOptions: true
                }
            }
        ],
    }]
}