-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
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
Where is documentation and minified files #4
Comments
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="spreadsheet.css"></link>
<script type="text/javascript" src="bundle.js"></script>
<script type="text/javascript">
window.onload = function () {
xspreadsheet(document.getElementById('wrapper'))
}
</script>
<title>TypeScript with VSCode</title>
</head>
<body>
<div id="wrapper"></div>
</body>
</html> |
Then how do i get the data programmatically? |
const x = xspreadsheet(document.getElementById('#id'))
x.change = (data) => {
console.log('data:', data)
}
// edit
// data is param in the change method
xspreadsheet(document.getElementById('#id'), {d: data}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was wondering were the minified js files are
What about documentation and usage examples?
The text was updated successfully, but these errors were encountered: