🎮 ExamplesData SourceDynamic data importDynamic data importThe data attribute accepts a function as well:Live Editor const grid = new Grid({ columns: ['Name', 'Email', 'Phone Number'], data: () => [ ['John', 'john@example.com', '(353) 01 222 3333'], ['Mark', 'mark@gmail.com', '(01) 22 888 4444'] ] }); const grid = new Grid({ columns: ['Name', 'Email', 'Phone Number'], data: () => [ ['John', 'john@example.com', '(353) 01 222 3333'], ['Mark', 'mark@gmail.com', '(01) 22 888 4444'] ]});ResultLoading...