Hi
how can I execute some code after updating a cell in the grid.
I tried using EVENTS
< GridEvents OnActionComplete="OnComplete" OnActionBegin="OnBegin" OnCellSave="CellSavedHandler" TValue="Artigos" > < /GridEvents
but they dont work if I use TAB to change to the next cell
Also using Data ADAPTER
< EjsDataManager AdaptorInstance="@typeof(CustomAdaptor)" Adaptor="Adaptors.CustomAdaptor" > < /EjsDataManager >
It only gets called if I press ENTER or jump to other row.
Ex:
I'm using a EjsGrid cell where I input a scan code number to lookup fields to fill other cells of this grid, like description and price.
Thank you