Select to view content in your preferred language

Row events not fired as expected on split operation

163
0
03-17-2025 02:28 AM
FridjofSchmidt
Frequent Contributor

Hello Esri,

In an ArcGIS Pro SDK Add-In (version 3.4) I subscribed to the row events of a line feature class to manipulate edits as they occur. I noticed that the row events are fired differently whether the feature class is accessed through a branch versioned feature service or directly from an Enterprise Geodatabase (sde connection) with traditional versioning.

In case of the sde connection, splitting a line feature at one point fires the following row events:

  1. A RowChangedEvent for the original feature (the shape is still the same as before the split operation)
  2. A RowCreatedEvent for a new feature (with the shape of one part resulting from the split operation)
  3. A RowChangedEvent for the original feature (with the shape of the other part resulting from the split operation)

However, in case of the feature service, only the first row event is fired. The two events with the shapes resulting from the split operation are not. Therefore I cannot update the split features as needed.

@Esri, is this a bug or by design? Will firing the row events be implemented in a future version?

Thanks, Fridjof

0 Kudos
0 Replies