Our blazing fast Grid component built with pure JavaScript


Post by Webethics »

I have to need to call a custom method on the date selection. Is there are any events available. If any then how will use it?


Post by saki »

Try this:

        }, {
            text   : 'Finish',
            type   : 'date',
            field  : 'finish',
            editor : {
                listeners : {
                    change(e) {
                        console.log(e);
                    }
                }
            }

Post by Webethics »

It's working. Thank you!


Post Reply