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
Hi, I am having trouble displaying detail row. I followed tutorial but skipped customized actions. Here are my related files. Archive.zip
The text was updated successfully, but these errors were encountered:
When I clicked the cell, nothing happened except for the console.log command defined in onCellClicked
console.log
onCellClicked
Sorry, something went wrong.
@xxf1995 Please put your code in GitHub repo. It's easier for me to look at the code without having to download it.
I had similar problem, had to change code https://github.com/ratiw/vuetable-2-tutorial/wiki/lesson-12
from onCellClicked (data, field, event) { console.log('cellClicked: ', field.name) this.$refs.vuetable.toggleDetailRow(data.id) } to onCellClicked ({data}) { this.$refs.vuetable.toggleDetailRow(data.id) },
onCellClicked (data, field, event) { console.log('cellClicked: ', field.name) this.$refs.vuetable.toggleDetailRow(data.id) }
onCellClicked ({data}) { this.$refs.vuetable.toggleDetailRow(data.id) },
my Data variable structure was different from example code.
No branches or pull requests
Hi, I am having trouble displaying detail row. I followed tutorial but skipped customized actions. Here are my related files.
Archive.zip
The text was updated successfully, but these errors were encountered: