Access cell value

In gridweb, is it possible to call function whenever the user

input data into a cell?

1. user input data to cell.
2. user focus out of the cell.
3. call function.

(like focusout, but I tried, it’s not working well.)





Hi,


Thanks for your posting and using Aspose.Cells for GridWeb.

Please use this function for your needs. You will give it your client side function that will be called when you unselect the cell i.e. (like focusout as you said)

GridWebBean.setOnCellUnselectedClientFunction(“MyOnUnselectCell”);

And here is the sample client side function which you can use for testing it.

function MyOnUnselectCell(cell) {
console.log(“Cell is unselected”));
}