Products
const config = {
    tabs: true,
    toolbar: true,
    worksheets: [{
        minDimensions: [, 10],
        worksheetName: 'Items',
        worksheetId: 'items',
        search: true,
        pagination: 10,
        paginationOptions: [10,50,100],
        columns: [{
                type: 'text',
                title: 'Name',
                width: '200px'
            },
            {
                type: 'notes',
                title: 'Description',
                width: '200px'
            },
            {
                type: 'text',
                title: 'Categories',
                width: '200px',
                multiple: true,
                worksheetId: 'categories'
            },
            {
                type: 'dropdown',
                title: 'Type',
                width: '200px',
                source: ['Audio', 'Image', 'Document'],
                options: {
                    newOptions: true
                },
                render: 'tag'
            },
            {
                type: 'url',
                title: 'Attachment',
                width: '200px'
            },
        ],
    },
    {
        minDimensions: [, 10],
        worksheetName: 'Categories',
        worksheetId: 'categories',
        columns: [{
                type: 'text',
                title: 'Name',
                width: '300px'
            },
            {
                type: 'notes',
                title: 'Description',
                width: '400px'
            }
        ],
    }]
}