We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try do get this javascript snipped to work. It shows no error but i also dont see a checkbox element. only a empty column... js code
new gridjs.Grid({ columns: [ { id: 'myCheckbox', name: 'Select', plugin: { // install the RowSelection plugin component: gridjs.plugins.selection.RowSelection } }, 'Email', ], data: [ ["John", "[email protected]" ], ["Mark", "[email protected]" ], ["Eoin", "[email protected]" ], ["Sarah", "[email protected]" ], ["Afshin", "[email protected]" ], ], sort: true }).render(document.getElementById("wrapper"));
html code
<!DOCTYPE html> <html lang="en"> <head> <link href="https://unpkg.com/gridjs/dist/theme/mermaid.min.css" rel="stylesheet" /> </head> <body> <div id="wrapper"></div> <script src="https://unpkg.com/gridjs/dist/gridjs.umd.js"></script> <script src="https://unpkg.com/gridjs/plugins/selection/dist/selection.umd.js"></script> <script src="index.js"></script> </body> </html> <script> </script>
The text was updated successfully, but these errors were encountered:
Duplicate of #1432 ?
Sorry, something went wrong.
No branches or pull requests
I try do get this javascript snipped to work. It shows no error but i also dont see a checkbox element. only a empty column...
js code
html code
The text was updated successfully, but these errors were encountered: