Select to view content in your preferred language

Is there a listener for column edits?

253
0
02-24-2023 12:58 PM
Schweitzer
Emerging Contributor

So in my add-in standalone tables are created and I subscribe to row change Events. This handles when a single row is modified directly from the attribute table.

 

rowCreateToken = RowCreatedEvent.Subscribe(OnRowCreateEvent, layerTable);
rowDeleteToken = RowDeletedEvent.Subscribe(OnRowDeleteEvent, layerTable);
rowChangedToken = RowChangedEvent.Subscribe(OnRowChangedEvent, layerTable);

 

This doesn't get triggered when the user uses the Calculate Field  option to edit the table. What options do I have to have a function called when data is edited this way? 

0 Kudos
0 Replies