Our blazing fast Grid component built with pure JavaScript


Post by Sergio_Salazar »

Hi, I would like to know what can I do to fire an event when a cell of my grid changes, I have a Grid with cell-edit feature and I need to know somehow when the user changes information in a cell.


Post by mats »


Post by Sergio_Salazar »

Thank you! To anyone interested, I did something like this:

 const cellEdited = (e) => {
         if (e.editorContext.column.data.field === 'col1') {
             //reacted to changes of col1
         }
     }
     
<BryntumGrid listeners = { { finishCellEdit: cellEdited } } />

Post by mats »

Thanks for sharing! :)


Post Reply