Yes, you can set a listener on the model object.
tableView.getTableData().getListListeners.add(new ListListener.Adapter()
{
@Override
public void itemUpdated(List list, int index, Object previousItem) {
}
});
Adam Perer wrote:
> Hello!
>
> Is there any way to listen for an event when a cell is checked in a TableView
> that has cells rendered with
> TableViewBooleanCellRenderer
> <http://pivot.apache.org/2.0/docs/api/org/apache/pivot/wtk/content/TableViewBooleanCellRenderer.html>?
>
> E.g. something like the ListView's ListViewItemStateListener's
> itemCheckedChanged()?
>
> Thanks,
> Adam
>