I want to change some fields every time my cellTable content changes (new row, row change). Is there any predefined event/handler for that?
Asked
Active
Viewed 147 times
1 Answers
1
See if addRangeChangeHandler
or addRowCountChangeHandler
in HasRows meet your needs.
If by "row change" you mean a change in selected row(s), you can use SelectionChangeHandler attached to a SelectionModel.
Otherwise, you can simply call whatever method you need when you add a row or update a data provider.

Andrei Volgin
- 40,755
- 6
- 49
- 58
-
RowCountChangeHandler did the job. Cheers – Piotr Sołtysiak Oct 09 '14 at 09:03