0

I want to change some fields every time my cellTable content changes (new row, row change). Is there any predefined event/handler for that?

Piotr Sołtysiak
  • 998
  • 5
  • 13

1 Answers1

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