image: img/spreadsheet-templates-best-movies.jpg folder: hobbies category: template
const config = {
toolbar: true,
tabs: true,
worksheets: [{
data: [
{ id: 1, data: [ 'Portrait of a Lady on Fire', 'https://m.media-amazon.com/images/M/MV5BNjgwNjkwOWYtYmM3My00NzI1LTk5OGItYWY0OTMyZTY4OTg2XkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_.jpg', 2019, 'Drama', 4, 1, 'https://www.youtube.com/watch?v=R-fQPTwma9o', '' ] },
{ id: 2, data: [ 'Toy Story', 'https://upload.wikimedia.org/wikipedia/en/thumb/1/13/Toy_Story.jpg/220px-Toy_Story.jpg', 1995, 'Animation', 5, 2, '', '' ] },
{ id: 3, data: [ 'Beauty and the Beast', 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSZTjg2qT75vzvf3nRAYeydSfsh_l_WrbH6aw&usqp=CAU', '1991', 'Animation', 8.6, 2, '', '"Disney`s 30th animated feature, Beauty and the Beast stands at the pinnacle of animated accomplishment, even when weighted against the excellencies of its lineage." - Hollywood Reporter' ] },
{ id: 4, data: [ 'Spirited Away', 'https://upload.wikimedia.org/wikipedia/en/d/db/Spirited_Away_Japanese_poster.png', '2001', 'Animation', 5, '', '' ]}
],
columns: [
{ type: 'text', title: 'Movie', width:'200px' },
{ type: 'image', title: 'Image', width:'60px' },
{ type: 'number', title: 'Year', width:'50px' },
{ type: 'dropdown', title: 'Genre', multiple: true, render:'tag', source: [
"Comedy",
"Fantasy",
"Crime",
"Drama",
"Music",
"Adventure",
"History",
"Thriller",
"Animation",
"Family",
"Mystery",
"Biography",
"Action",
"Film-Noir",
"Romance",
"Sci-Fi",
"War",
"Western",
"Horror",
"Musical",
"Sport"
] },
{ type: 'rating', title: 'Rating', width: '90px' },
{ type: 'record', title: 'Producer', worksheetId: 'companies', width:'110px' },
{ type: 'url', title: 'Trailer', width:'200px' },
{ type: 'notes', title: 'Notes' },
],
worksheetId: 'movies',
worksheetName: 'Movies',
defaultColWidth: '100px',
},
{
data: [
{ id: 1, data: [ 'Neon', '', ] },
{ id: 2, data: [ 'Disney', 'https://i.pinimg.com/564x/d2/b2/07/d2b207b4273c349390d5a21e05f8031d.jpg', ] },
],
columns: [
{ type: 'text', title: 'Name', width:'500px' },
{ type: 'image', title: 'Photo', },
],
worksheetId: 'companies',
worksheetName: 'Companies',
defaultColWidth: '100px'
}]
};