Our blazing fast Grid component built with pure JavaScript


Post by Webethics »

Hello

I have using the bryntum grid cell editing feature with vue, and I need to get the event that returns the updated value of the cell.

I have checked the complete document but don't get how to use the listeners for cell edit.

Basically, my goal is to save the updated cell value in the DB on runtime. So that I need the event which returns the value to me.

I have followed the below link
https://bryntum.com/docs/scheduler/#Grid/feature/CellEdit#event-beforeCellEditStart

But don't understand how to use this in Vue js.

Thanks


Post by mats »


Post by Webethics »

I have followed the same way as described in the documentation, but not receive the event.
I have attached the screenshots of my code

Event listener on the grid
https://prnt.sc/106gbge

Method calling function
https://prnt.sc/106gbo6

Not receive the event.


Post by saki »

Try this:

@beforecelleditstart = "onBeforeCellEditStart"

onBeforeCellEditStart(event) {
    console.log(event);
}

It worked for me. The problem is that Vue events are case sensitive and the event fired is all lowercase.


Post by Webethics »

Great thanks

It worked for me.


Post Reply