I am getting examples of null reference exception error for some event handlers in 25R2 such as the following:
|
When reviewing the error, it suggests a problem with RowInserting for the split,
PX.Data.RowInsertingEvents.AddAbstractHandler(Action`1 handler)
To overcome the problem I can comment out the second optional parameter (delegate) as shown below:
protected void _(Events.RowInserting<INKitTranSplit> e) //, PXRowInserting del)
{
//del?.Invoke(e.Cache, e.Args);
INKitTranSplit row = e.Row;but this is not ideal. The problem can occur with other events, all of them appear to involve the
PX.Objects.IN.GraphExtensions.LineSplittingExtension in the stack trace.
Has anyone else observed this issue? I wish to keep the delegate option.