DataGrid doesn't fire collectionChangeListener after inline edit

I expected that DataGrid fires Datasource.collectionChangeListener event with UPDATE operation after inline item edit but it occured that it doesn’t. Is this right?
I found a workaround with DataGrid.editorCloseListener instead.

Hi,

You’re right, DataGrid doesn’t fire collectionChangeListener after inline edit, the same as the editable table does. However, you can implement the EditorPostCommitListener for this purpose.

Regards,
Gleb

CollectionChangeListener if fired only if Collection is changed (e.g. items added / removed / replaced), it is not fired when properties of collection items are changed.