ratiw / vuetable-2-tutorial

MIT License
258 stars 67 forks source link

How to toggle detail-row when zoom icon clicked from action #101

Closed mikeerickson closed 6 years ago

mikeerickson commented 6 years ago

I am trying to figure out how to toggle the display of the DetailRow when user clicks on the "zoom" icon in the Action column? I assume this is easy, just trying to figure out the workflow of call the toggleDetail method

mikeerickson commented 6 years ago

Well, now that was just too easy. Should have figured to ask tech support (aka Google) before posting the message. For posterity sake, it was as simple as

...
    methods: {
        itemAction(action, data, index) {
            this.$parent.toggleDetailRow(data.id);
        },
    },
...