Giter VIP home page Giter VIP logo

Comments (6)

ratiw avatar ratiw commented on August 12, 2024

@thekordy Not at the moment. I have an idea about this but still haven't had time to work on it.

from vuetable-2.

thekordy avatar thekordy commented on August 12, 2024

What about something like that?

// Vuetable.vue L.50
<component @CustomAction:action-item="fireEvent"  :is="extractArgs(field.name)" :row-data="item"></component>

and then i can emit it in the custom action component

Vue.component('custom-actions', {
...
 methods: {
            onClick: function (action, data) {
                this.$emit('CustomAction:action-item', 'action', {action: action, data: data});
            },
        }

and register it in the vuetable directive

<vuetable ref="vuetable"
                          ...
                          @vuetable:action="onActions"
                ></vuetable>

I then receive it in the Vue instance

onActions(data) {
                if (data.action == 'delete') {
                    this.deleteAction(data.data);
                }
            },

Or do you think there is a better way to register the custom event?

from vuetable-2.

ratiw avatar ratiw commented on August 12, 2024

@thekordy It's already working for event, no modification to vuetable-2 template for that.

You just have to make your component emit the event on the $parent (which is vuetable-2) by changing this:

  this.$emit('CustomAction:action-item', 'action', {action: action, data: data});

to this:

  this.$parent.$emit('CustomAction:action-item', 'action', {action: action, data: data});

then, you can capture the event in the main vue instance, like so

<vuetable ref="vuetable"
                          ...
                          @CustomAction:action-item="onActions"
></vuetable>

Passing additional option to the custom component is the real problem here that I'm thinking about.

from vuetable-2.

fu-hb avatar fu-hb commented on August 12, 2024

if i use three vuetbale , only one onActions is work, What's the matter?

from vuetable-2.

ratiw avatar ratiw commented on August 12, 2024

@18979687252 I don't see you code so I can't really tell if you did it correctly or not. You can open a new issue and put some of your code. That will make it easier to discuss and work on.

from vuetable-2.

thekordy avatar thekordy commented on August 12, 2024

@ratiw Thanks a lot 👍

from vuetable-2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.