I need to be able to call grid hideColumn() method using the vue wrapper.
I've wired up the event from the grid like this:
<kendo-grid :before-edit="beforeEdit">
and then in my vue js I have:
methods: {
beforeEdit: function (e) {
//how to hide column of the grid here?
}
}
In the jQuery examples I could use 'this' to reference the grid but what is the method when using vue?
Thanks
Tony