replacement for ItemSetChangeListener in Grid

In table, there was the possibility to set an ItemSetChangeListener.
Is there some replacement for this in Grid?

I think it is not necessary, since you can set ItemSetChangeListener in the underlying container instead.

I tried that, and it works.

Yes, Table implements all sorts of Container interfaces and just delegates to the underlying Container. Grid does not do the same in order to keep the API more compact, so you should access the container directly when needed.