TableDataChangedListener

Overview

The TableDataChangedListener interface should be implemented by the class, that is supposed to handle DataRowChangedEvent, DataColumnChangedEvent of the DataTable object.

To learn more about when and why the events are triggered check DataRowChangedEvent and DataColumnChangedEvent description.

Location


Required Methods


tableColumnChanged

Implement this method to handle the DataColumnChangedEvent.

 

method tableColumnChanged(anEvent: DataColumnChangedEvent)

 

void tableColumnChanged(DataColumnChangedEvent anEvent)

Parameters:

  • anEvent: the column event that was raised.

tableRowChanged

Implement this method to handle the DataRowChangedEvent.

 

method tableRowChanged(anEvent: DataRowChangedEvent)

 

void tableRowChanged(DataRowChangedEvent anEvent)

Parameters:

  • anEvent: the row event that was raised.